From b31386140e181640043fa05852f32a428d778257 Mon Sep 17 00:00:00 2001 From: Guan Date: Thu, 2 Aug 2018 18:14:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(schema):=20ProjectSchema=20=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=B1=9E=E6=80=A7=E6=98=AF=E5=90=A6=E5=B7=B2=E5=BD=92?= =?UTF-8?q?=E6=A1=A3=20isSuspended?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/schemas/Project.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/schemas/Project.ts b/src/schemas/Project.ts index 30ff94f4a..3862578cd 100644 --- a/src/schemas/Project.ts +++ b/src/schemas/Project.ts @@ -35,6 +35,7 @@ export interface ProjectSchema { isDeleted: boolean isPublic: boolean isStar: boolean + isSuspended: boolean logo: string membersCount: number name: string @@ -147,6 +148,9 @@ const Schema: SchemaDef = { isStar: { type: RDBType.BOOLEAN }, + isSuspended: { + type: RDBType.BOOLEAN + }, logo: { type: RDBType.STRING },