# 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)
9 lines
165 B
Python
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"),
|
|
]
|