oncall-engine/engine/apps/telegram/urls.py
Joey Orlando 4cc4099710
Address Telegram HTTP 500s when receiving message from Telegram in discussion group (#3622)
# Which issue(s) this PR fixes

Closes https://github.com/grafana/oncall/issues/3621

## Checklist

- [x] Unit, integration, and e2e (if applicable) tests updated
- [ ] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)
2024-01-09 08:31:56 -05:00

9 lines
165 B
Python

from django.urls import path
from .views import WebHookView
app_name = "telegram"
urlpatterns = [
path("", WebHookView.as_view(), name="incoming_webhook"),
]