15 lines
408 B
Python
15 lines
408 B
Python
from django.conf.urls import url
|
|
|
|
from awx.api.views import (
|
|
WebhookKeyView,
|
|
GithubWebhookReceiver,
|
|
GitlabWebhookReceiver,
|
|
)
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^webhook_key/$', WebhookKeyView.as_view(), name='webhook_key'),
|
|
url(r'^github/$', GithubWebhookReceiver.as_view(), name='webhook_receiver_github'),
|
|
url(r'^gitlab/$', GitlabWebhookReceiver.as_view(), name='webhook_receiver_gitlab'),
|
|
]
|