new_model_for_communities #15

Merged
michele.artini merged 81 commits from new_model_for_communities into master 2023-10-24 08:12:26 +02:00
1 changed files with 9 additions and 2 deletions
Showing only changes of commit 14e54a5140 - Show all commits

View File

@ -7,7 +7,7 @@ import io.swagger.v3.oas.annotations.media.Schema;
@JsonAutoDetect
public enum CommunityStatus {
@Schema(description = "restricted visibility")
@Schema(description = "hidden visibility")
hidden,
@Schema(description = "visible only to RCD managers")
@ -17,5 +17,12 @@ public enum CommunityStatus {
all,
@Schema(description = "visible only to RCD members")
members
members,
@Schema(description = "restricted visibility")
RESTRICTED,
@Schema(description = "public visibility")
PUBLIC
}