fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/urls_api.py

20 lines
375 B
Python

# coding: utf-8
# django
from django.conf.urls import patterns, include, url
# app
from .views import BlockedView
# API
urlpatterns = patterns(
'',
# Manually blocked API endpoints
url(r'^auth/register/', BlockedView.as_view()),
# /auth
url(r'^auth/', include('djoser.urls')),
# /feed
url(r'^', include('shelfzilla.apps.account.api.urls')),
)