1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/IdentityClientScope.cs

31 lines
850 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Teknik.Utilities
{
public enum IdentityClientScope
{
[DisplayName("openid")]
[Description("The user identifier")]
[ReadOnly(true)]
openid,
[DisplayName("role")]
[Description("The user role")]
role,
[DisplayName("account-info")]
[Description("A user's account information")]
accountInfo,
[DisplayName("security-info")]
[Description("A user's security information")]
securityInfo,
[DisplayName("teknik-api.read")]
[Description("Read access to the Teknik API")]
teknikApiRead,
[DisplayName("teknik-api.write")]
[Description("Write access to the Teknik API")]
teknikApiWrite,
}
}