* feat: API to fetch course-roles mapping by user and org * fix: added docstring and resolve pylint issues * feat: support bulk course team role updates via PUT API * fix: refactor APIs based on user permissions * chore: improve Swagger schema for course_team endpoints * fix: refactor GET and PUT api code * fix: apply pylint rules and optimize code * fix: resolve test cases for supoort apis * fix: change url path
18 lines
298 B
Python
18 lines
298 B
Python
"""
|
|
URL definitions for the course_modes v1 API.
|
|
"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from .views import CourseTeamManageAPIView
|
|
|
|
app_name = "v1"
|
|
|
|
urlpatterns = [
|
|
re_path(
|
|
r"manage_course_team/?$",
|
|
CourseTeamManageAPIView.as_view(),
|
|
name="manage_course_team",
|
|
),
|
|
]
|