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/apps/manga/api/urls.py

15 lines
280 B
Python
Raw Normal View History

2015-04-05 22:07:43 +00:00
# coding: utf-8
# third
from rest_framework.routers import DefaultRouter
# own
from .views import VolumesViewSet
router = DefaultRouter(trailing_slash=False)
router.register(r'volumes', VolumesViewSet)
2015-05-05 20:26:32 +00:00
router.register(r'publishers', VolumesViewSet)
2015-04-05 22:07:43 +00:00
urlpatterns = router.urls