This commit is contained in:
@@ -147,11 +147,10 @@ namespace AyaNova.Api.Controllers
|
||||
return StatusCode(503, new ApiErrorResponse(ApiErrorCode.API_CLOSED, null, serverState.Reason));
|
||||
}
|
||||
|
||||
Dictionary<string, string> ret = new Dictionary<string, string>();
|
||||
|
||||
ret.Add("usertypes", "AyaNova user account types");
|
||||
ret.Add("authorizationroles", "AyaNova user account role types");
|
||||
ret.Add("AyaType", "All AyaNova object types, use the AyaTypeController route to fetch these");
|
||||
List<KeyValuePair<string, string>> ret = new List<KeyValuePair<string, string>>();
|
||||
ret.Add(new KeyValuePair<string, string>("usertypes", "AyaNova user account types"));
|
||||
ret.Add(new KeyValuePair<string, string>("authorizationroles", "AyaNova user account role types"));
|
||||
ret.Add(new KeyValuePair<string, string>("AyaType", "All AyaNova object types, use the AyaTypeController route to fetch these"));
|
||||
|
||||
return Ok(new ApiOkResponse(ret));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user