visuddhinanda 2 лет назад
Родитель
Сommit
7256613a7f
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      dashboard/src/components/api/Comment.ts

+ 2 - 0
dashboard/src/components/api/Comment.ts

@@ -10,6 +10,7 @@ export interface ICommentRequest {
   content?: string;
   content_type?: TContentType;
   parent?: string;
+  tpl_id?: string;
   status?: "active" | "close";
   editor?: IUserApiData;
   created_at?: string;
@@ -24,6 +25,7 @@ export interface ICommentApiData {
   content?: string;
   content_type?: TContentType;
   parent?: string;
+  tpl_id?: string;
   status?: "active" | "close";
   children_count?: number;
   editor: IUserApiData;