The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
913 B
31 lines
913 B
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel; |
|
using System.ComponentModel.DataAnnotations; |
|
using System.Text; |
|
|
|
namespace Teknik.Utilities |
|
{ |
|
public enum IdentityClientScope |
|
{ |
|
[Display(Name = "openid")] |
|
[Description("The user identifier")] |
|
[ReadOnly(true)] |
|
openid, |
|
[Display(Name = "role")] |
|
[Description("The user role")] |
|
role, |
|
[Display(Name = "account-info")] |
|
[Description("A user's account information")] |
|
accountInfo, |
|
[Display(Name = "security-info")] |
|
[Description("A user's security information")] |
|
securityInfo, |
|
[Display(Name = "teknik-api.read")] |
|
[Description("Read access to the Teknik API")] |
|
teknikApiRead, |
|
[Display(Name = "teknik-api.write")] |
|
[Description("Write access to the Teknik API")] |
|
teknikApiWrite, |
|
} |
|
}
|
|
|