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.
18 lines
382 B
18 lines
382 B
from django.conf.urls import url
|
|
|
|
from sapl.api.views import TipoAutorContentOfModelContentTypeView
|
|
|
|
from .apps import AppConfig
|
|
|
|
app_name = AppConfig.name
|
|
|
|
|
|
# router = DefaultRouter()
|
|
|
|
urlpatterns = [
|
|
url(r'^autor/possiveis/(?P<pk>[0-9]*)$',
|
|
TipoAutorContentOfModelContentTypeView.as_view(),
|
|
name='autores_possiveis_pelo_tipo'),
|
|
]
|
|
|
|
# urlpatterns += router.urls
|
|
|