mirror of
https://github.com/zulip/zulip.git
synced 2025-11-20 14:38:46 +00:00
We fall back to guessing based on the realm if the user doesn't have a profile in our system (imported from commit 833885168c451074c885b4422d62986855a215f7)
8 lines
228 B
Python
8 lines
228 B
Python
from django.conf.urls import patterns, url, include
|
|
|
|
urlpatterns = patterns('zilencer.views',
|
|
url('^feedback$', 'rest_dispatch',
|
|
{'POST': 'submit_feedback'}),
|
|
url('^endpoints$', 'lookup_endpoints_for_user'),
|
|
)
|