Преглед изворни кода

add manager in TCourseRole

visuddhinanda пре 2 година
родитељ
комит
435f83c403
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      dashboard/src/components/api/Course.ts

+ 1 - 1
dashboard/src/components/api/Course.ts

@@ -26,7 +26,7 @@ export interface ICourseDataRequest {
   join: string;
   request_exp: string;
 }
-export type TCourseRole = "teacher" | "assistant" | "student";
+export type TCourseRole = "teacher" | "manager" | "assistant" | "student";
 export type TCourseJoinMode = "invite" | "manual" | "open";
 export type TCourseExpRequest = "none" | "begin-end" | "daily";
 export interface ICourseDataResponse {