-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScopes.cs
More file actions
34 lines (29 loc) · 947 Bytes
/
Scopes.cs
File metadata and controls
34 lines (29 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
namespace HttpsRichardy.Federation.Common.Constants;
public static class Scopes
{
public static class OpenID
{
public const string Name = "openid";
public const string Description = "Authenticate using OpenID Connect";
}
public static class Profile
{
public const string Name = "profile";
public const string Description = "Access basic profile information (name, family name, etc.)";
}
public static class Email
{
public const string Name = "email";
public const string Description = "Access the user's email address";
}
public static class Address
{
public const string Name = "address";
public const string Description = "Access the user's address information";
}
public static class Phone
{
public const string Name = "phone";
public const string Description = "Access the user's phone number";
}
}