17c9beca28
This reverts commit 6e1aa4b0f4
.
19 lines
453 B
TypeScript
19 lines
453 B
TypeScript
export type Group = {
|
|
id: string
|
|
slug: string
|
|
name: string
|
|
about: string
|
|
creatorId: string // User id
|
|
createdTime: number
|
|
mostRecentActivityTime: number
|
|
memberIds: string[] // User ids
|
|
anyoneCanJoin: boolean
|
|
contractIds: string[]
|
|
|
|
chatDisabled?: boolean
|
|
}
|
|
export const MAX_GROUP_NAME_LENGTH = 75
|
|
export const MAX_ABOUT_LENGTH = 140
|
|
export const MAX_ID_LENGTH = 60
|
|
export const NEW_USER_GROUP_SLUGS = ['updates', 'bugs', 'welcome']
|