Skip to content

Commit

Permalink
Merge pull request #131 from jbrunton/refactor-room-types
Browse files Browse the repository at this point in the history
refactor: room entity type
  • Loading branch information
jbrunton authored Aug 12, 2024
2 parents 69190d1 + ded4207 commit 87d0ed9
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 87d0ed9

Please sign in to comment.