async fn get_course_modules(
course_id: Path<Uuid>,
user: AuthUser,
pool: Data<PgPool>,
) -> ControllerResult<Json<Vec<CourseModule>>>Expand description
GET /api/v0/cms/courses/:course_id/modules
Returns modules in the course.
async fn get_course_modules(
course_id: Path<Uuid>,
user: AuthUser,
pool: Data<PgPool>,
) -> ControllerResult<Json<Vec<CourseModule>>>GET /api/v0/cms/courses/:course_id/modules
Returns modules in the course.