Add integration for Travis CI.

This commit is contained in:
Josh Mandel
2015-11-22 09:51:00 +01:00
committed by Tim Abbott
parent 05acd510c0
commit 716e2d9184
7 changed files with 189 additions and 0 deletions

View File

@@ -168,6 +168,7 @@ urlpatterns += patterns('zerver.views',
url(r'^api/v1/external/freshdesk$', 'webhooks.api_freshdesk_webhook'),
url(r'^api/v1/external/zendesk$', 'webhooks.api_zendesk_webhook'),
url(r'^api/v1/external/pagerduty$', 'webhooks.api_pagerduty_webhook'),
url(r'^api/v1/external/travis$', 'webhooks.api_travis_webhook'),
url(r'^user_uploads/(?P<realm_id>(\d*|unk))/(?P<filename>.*)', 'get_uploaded_file'),
)