Skip to content

Commit

Permalink
refactor: room entity type
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrunton committed Aug 12, 2024
1 parent 647abac commit ded4207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/api/src/domain/entities/room.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export class Room {
id: string;
ownerId: string;
name: string;
contentPolicy: ContentPolicy.Public | ContentPolicy.Private;
joinPolicy: JoinPolicy.Anyone | JoinPolicy.Request | JoinPolicy.Invite;
contentPolicy: ContentPolicy;
joinPolicy: JoinPolicy;
}

0 comments on commit ded4207

Please sign in to comment.