Skip to content
Snippets Groups Projects
urls.py 184 B
Newer Older
  • Learn to ignore specific revisions
  • Rafael László's avatar
    Rafael László committed
    from rest_framework import routers
    from . import views
    
    router = routers.DefaultRouter()
    
    
    Rafael László's avatar
    Rafael László committed
    router.register(r'groups', views.GroupsViewSet, base_name='groups')
    
    Rafael László's avatar
    Rafael László committed
    urlpatterns = router.urls