Skip to content

Commit

Permalink
Merge pull request #511 from teambition/fea/add-project-schema-issuspend
Browse files Browse the repository at this point in the history
feat(schema): ProjectSchema 新增属性是否已归档 isSuspended
  • Loading branch information
chuan6 authored Aug 8, 2018
2 parents 4a88056 + b313861 commit be41a89
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/schemas/Project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export interface ProjectSchema {
isDeleted: boolean
isPublic: boolean
isStar: boolean
isSuspended: boolean
logo: string
membersCount: number
name: string
Expand Down Expand Up @@ -147,6 +148,9 @@ const Schema: SchemaDef<ProjectSchema> = {
isStar: {
type: RDBType.BOOLEAN
},
isSuspended: {
type: RDBType.BOOLEAN
},
logo: {
type: RDBType.STRING
},
Expand Down

0 comments on commit be41a89

Please sign in to comment.