mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
Errors are sent to a queue processor that posts them to staging, just like the feedback bot. (imported from commit 4a8d099672a1b3e48a8bc94148d8b53db73d2c64)
10 lines
308 B
Python
10 lines
308 B
Python
from django.conf.urls import patterns, url, include
|
|
|
|
urlpatterns = patterns('zilencer.views',
|
|
url('^feedback$', 'rest_dispatch',
|
|
{'POST': 'submit_feedback'}),
|
|
url('^report_error$', 'rest_dispatch',
|
|
{'POST': 'report_error'}),
|
|
url('^endpoints$', 'lookup_endpoints_for_user'),
|
|
)
|