StudE-Backend/stude/study_groups/urls.py

8 lines
232 B
Python
Raw Permalink Normal View History

from django.urls import include, path
from .views import StudyGroupListView, StudyGroupMembershipViewSet
urlpatterns = [
path('', StudyGroupListView.as_view()),
path('membership/', StudyGroupMembershipViewSet.as_view()),
]