فهرست منبع

add review & proofread in TTaskCategory

visuddhinanda 1 سال پیش
والد
کامیت
352acf3741
1فایلهای تغییر یافته به همراه8 افزوده شده و 1 حذف شده
  1. 8 1
      dashboard-v4/dashboard/src/components/api/task.ts

+ 8 - 1
dashboard-v4/dashboard/src/components/api/task.ts

@@ -33,11 +33,18 @@ export interface IProject {
   description: string | null;
 }
 
-export type TTaskCategory = "translate" | "vocabulary" | "team";
+export type TTaskCategory =
+  | "translate"
+  | "vocabulary"
+  | "team"
+  | "review"
+  | "proofread";
 export const ATaskCategory: TTaskCategory[] = [
   "translate",
   "vocabulary",
   "team",
+  "review",
+  "proofread",
 ];
 export interface ITaskData {
   id: string;