mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
829 B
34 lines
829 B
from django.conf import settings
|
|
from django.conf.urls import include, url
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from sapl.api.views import (AutorListView, MateriaLegislativaViewSet,
|
|
ModelChoiceView)
|
|
|
|
from .apps import AppConfig
|
|
|
|
app_name = AppConfig.name
|
|
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'materia', MateriaLegislativaViewSet)
|
|
urlpatterns_router = router.urls
|
|
|
|
|
|
urlpatterns_api = [
|
|
|
|
url(r'^autor', AutorListView.as_view(), name='autor_list'),
|
|
|
|
url(r'^model/(?P<content_type>\d+)/(?P<pk>\d*)$',
|
|
ModelChoiceView.as_view(), name='model_list'),
|
|
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns_api += [
|
|
url(r'^docs', include('rest_framework_docs.urls')), ]
|
|
|
|
urlpatterns = [
|
|
url(r'^api/', include(urlpatterns_api)),
|
|
url(r'^api/', include(urlpatterns_router))
|
|
]
|
|
|