I have set up a Webhook.
I have checked the Webhook with a test button in Taiga - everything works.
But when I do tasks in the project I do not receive notifications.
What should I do and where should I look to fix it?
In docker logs taiga-back & taiga-async No errors.
The solution found.
In container taiga-async need change /taiga-back/settings/config.py
– OLD config.py
CELERY_ENABLED = os.getenv(‘CELERY_ENABLED’, ‘True’) == ‘True’
WEBHOOKS_ENABLED = os.getenv(‘WEBHOOKS_ENABLED’, ‘True’) == ‘True’
WEBHOOKS_ALLOW_PRIVATE_ADDRESS = os.getenv(‘WEBHOOKS_ALLOW_PRIVATE_ADDRESS’, ‘False’) == ‘True’
– NEW config.py
CELERY_ENABLED = True
WEBHOOKS_ENABLED = True
WEBHOOKS_ALLOW_PRIVATE_ADDRESS = True