2020-12-14 20:29:38 +01:00
|
|
|
"""
|
|
|
|
@author: p.dolata
|
|
|
|
"""
|
|
|
|
|
2020-12-15 16:28:25 +01:00
|
|
|
from rest_framework.routers import SimpleRouter
|
2020-12-14 20:29:38 +01:00
|
|
|
|
|
|
|
from smartpicasso.app.project.views import ProjectsView
|
|
|
|
|
2020-12-15 16:28:25 +01:00
|
|
|
router = SimpleRouter(trailing_slash=False)
|
|
|
|
router.register('projects', ProjectsView, basename="projects")
|
|
|
|
urlpatterns = router.urls
|