Skip to content

Commit

Permalink
Add missing roles
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamco committed Jan 12, 2025
1 parent bd65eed commit 151ad09
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@ public static class ApplicationBuilderExtensions
{
RoleName = "Anonymous",
RoleDescription = "A system role representing all non-authenticated users."
},
new Role
{
RoleName = "Moderator",
RoleDescription = "Grants users the ability to moderate content."
},
new Role
{
RoleName = "Author",
RoleDescription = "Grants users the ability to create content."
},
new Role
{
RoleName = "Contributor",
RoleDescription = "Grants users the ability to contribute content."
}
];

Expand Down

0 comments on commit 151ad09

Please sign in to comment.