Skip to content

Commit

Permalink
Added position permissions to the enum
Browse files Browse the repository at this point in the history
  • Loading branch information
annygumeniuk committed Dec 21, 2024
1 parent cc14130 commit dd966fb
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,4 +195,15 @@ public enum Permissions : short
[Display(GroupName = "CompetitiveEvent", Name = "Remove", Description = "Can remove CompetitiveEvent data")]
CompetitiveEventRemove = 153,
#endregion

#region Position control permissions #16
[Display(GroupName = "Position", Name = "Read", Description = "Can read Position")]
PositionRead = 160,
[Display(GroupName = "Position", Name = "Edit", Description = "Can edit Position item")]
PositionEdit = 161,
[Display(GroupName = "Position", Name = "Add new", Description = "Can add a new Position item")]
PositionAddNew = 162,
[Display(GroupName = "Position", Name = "Remove", Description = "Can remove Position data")]
PositionRemove = 163,
#endregion
}

0 comments on commit dd966fb

Please sign in to comment.