Replace space privacy with visibility

* Make creatorId nullable
This commit is contained in:
Philipinho
2024-03-21 20:31:32 +00:00
parent 186c4f5f5c
commit 639842182c
6 changed files with 57 additions and 8 deletions

View File

@ -10,7 +10,7 @@ export enum SpaceRole {
READER = 'reader', // can only read pages in space
}
export enum SpacePrivacy {
export enum SpaceVisibility {
OPEN = 'open', // any workspace member can see and join.
PRIVATE = 'private', // only added space users can see
}