-
Notifications
You must be signed in to change notification settings - Fork 57
/
AuthConstants.cs
75 lines (65 loc) · 1.97 KB
/
AuthConstants.cs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
namespace DevBetterWeb.Core;
public class AuthConstants
{
public static class Users
{
public static class Admin
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Admin";
public const string LAST_NAME = "User";
}
public static class Demo
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Demo";
public const string LAST_NAME = "User";
}
public static class Demo2
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Demo2";
public const string LAST_NAME = "User2";
}
public static class Demo3
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Demo3";
public const string LAST_NAME = "User3";
}
public static class Demo4
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Demo4";
public const string LAST_NAME = "User4";
}
public static class NonMember
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "non-member";
public const string LAST_NAME = "non-member";
}
public static class Alumni
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Alumni";
public const string LAST_NAME = "User";
}
public static class Alumni2
{
public const string EMAIL = "[email protected]";
public const string FIRST_NAME = "Alumni2";
public const string LAST_NAME = "User2";
}
}
public static class Roles
{
public const string ADMINISTRATORS = "Administrators";
public const string MEMBERS = "Members";
public const string ALUMNI = "Alumni";
public const string ADMINISTRATORS_MEMBERS = "Administrators,Members";
public const string ADMINISTRATORS_MEMBERS_ALUMNI = "Administrators,Members,Alumni";
public const string MEMBERS_ALUMNI = "Members,Alumni";
}
public const string DEFAULT_PASSWORD = "Pass@word1";
}