This commit is contained in:
2020-04-05 23:33:10 +00:00
parent 837658f86c
commit 3e1323ee1d
6 changed files with 29 additions and 22 deletions

View File

@@ -19,11 +19,11 @@ namespace AyaNova.Api.ControllerHelpers
{
///<summary>Unknown state, used for parsing</summary>
UNKNOWN = 0,
///<summary>No access for anyone API completely locked down</summary>
///<summary>No access for anyone API completely locked down. Not set by user but rather by internal server operations like importing or backup.</summary>
Closed = 1,
///<summary>Access only to API Operations routes</summary>
///<summary>Access only to API Operations routes. Can be set by Ops user</summary>
OpsOnly = 2,
///<summary>Open for all users (default)</summary>
///<summary>Open for all users (default). Can be set by Ops user</summary>
Open = 3
}