mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-15 04:21:49 -05:00
since only the Bitbucket Server product supports signed payloads, bitbucket.org does not. And we are requiring signed payloads.
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'),
|
|
]
|