Commit 8767a711 authored by Mario Chirinos's avatar Mario Chirinos

login

parent 4e7b6e73
...@@ -20,6 +20,9 @@ class AuthRequiredMiddleware(object): ...@@ -20,6 +20,9 @@ class AuthRequiredMiddleware(object):
if "/catalog/streaming/" in request.path_info: if "/catalog/streaming/" in request.path_info:
return response return response
if "/catalog/api/" in request.path_info:
return response
if request.path_info == reverse('ws-news-list2') or request.path_info == reverse('signup'): if request.path_info == reverse('ws-news-list2') or request.path_info == reverse('signup'):
return response return response
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment