Sfoglia il codice sorgente

Merge branch 'feat/140128-enable-saving-as-a-wip-page' into feat/140129-turn-existing-pages-into-wip-pages

Shun Miyazawa 2 anni fa
parent
commit
51a3b4da17
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      packages/core/src/interfaces/page.ts

+ 2 - 0
packages/core/src/interfaces/page.ts

@@ -39,6 +39,8 @@ export type IPage = {
   latestRevision?: Ref<IRevision>,
   latestRevisionBodyLength?: number,
   expandContentWidth?: boolean,
+  wip?: boolean,
+  wipExpiredAt?: Date,
 }
 
 export type IPagePopulatedToList = Omit<IPageHasId, 'lastUpdateUser'> & {