oncall-engine/engine/apps/exotel/urls.py
clemthom 28190fe6b7
add exotel call provider (#4433)
# What this PR does

Added support for [Exotel](https://exotel.com/) call provider. 

Features:

- Sending verification code through SMS
- Making test call
- Making notification call


## Checklist

- [x] Unit, integration, and e2e (if applicable) tests updated
- [x] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] Added the relevant release notes label (see labels prefixed w/
`release:`). These labels dictate how your PR will
    show up in the autogenerated release notes.
2024-06-06 06:19:02 +00:00

9 lines
198 B
Python

from django.urls import path
from .views import CallStatusCallback
app_name = "exotel"
urlpatterns = [
path("call_status_events/", CallStatusCallback.as_view(), name="call_status_events"),
]