Hook in the webhook receiver views into the urlconf

This commit is contained in:
Jeff Bradberry
2019-08-06 16:00:59 -04:00
parent a7a99ed141
commit 8f97dbf781
4 changed files with 37 additions and 1 deletions

View File

@@ -150,6 +150,11 @@ from awx.api.views.root import ( # noqa
ApiV2ConfigView,
ApiV2SubscriptionView,
)
from awx.api.views.webhooks import ( # noqa
GithubWebhookReceiver,
GitlabWebhookReceiver,
BitbucketWebhookReceiver,
)
logger = logging.getLogger('awx.api.views')