瀏覽代碼

add content_created_at

visuddhinanda 2 年之前
父節點
當前提交
15a7bebcdd
共有 2 個文件被更改,包括 4 次插入0 次删除
  1. 2 0
      dashboard/src/components/api/Channel.ts
  2. 2 0
      dashboard/src/components/channel/ChannelPickerTable.tsx

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

@@ -36,6 +36,8 @@ export interface IApiResponseChannelData {
   updated_at: string;
   role?: TRole;
   final?: IFinal[];
+  content_created_at: string;
+  content_updated_at: string;
 }
 export interface IApiResponseChannel {
   ok: boolean;

+ 2 - 0
dashboard/src/components/channel/ChannelPickerTable.tsx

@@ -43,6 +43,8 @@ export interface IItem {
   final?: IFinal[];
   progress: number;
   createdAt: number;
+  content_created_at?: string;
+  content_updated_at?: string;
 }
 interface IWidget {
   type?: ArticleType | "editable";