mirror of https://github.com/Squidex/squidex.git
19 changed files with 1734 additions and 31 deletions
@ -1,14 +1,14 @@ |
|||
// ==========================================================================
|
|||
// ExtendedClaimTypes.cs
|
|||
// SquidexClaimTypes.cs
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex Group
|
|||
// All rights reserved.
|
|||
// ==========================================================================
|
|||
|
|||
namespace Squidex.Infrastructure.Security |
|||
namespace Squidex.Core.Identity |
|||
{ |
|||
public class ExtendedClaimTypes |
|||
public class SquidexClaimTypes |
|||
{ |
|||
public const string SquidexDisplayName = "urn:squidex:name"; |
|||
|
|||
@ -0,0 +1,21 @@ |
|||
// ==========================================================================
|
|||
// SquidexRoles.cs
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex Group
|
|||
// All rights reserved.
|
|||
// ==========================================================================
|
|||
|
|||
namespace Squidex.Core.Identity |
|||
{ |
|||
public static class SquidexRoles |
|||
{ |
|||
public const string Administrator = "administrator"; |
|||
|
|||
public const string AppOwner = "app-owner"; |
|||
|
|||
public const string AppEditor = "app-editor"; |
|||
|
|||
public const string AppDeveloper = "app-developer"; |
|||
} |
|||
} |
|||
@ -0,0 +1,22 @@ |
|||
<!DOCTYPE html> |
|||
<html> |
|||
<head> |
|||
<title>Squidex - Account locked</title> |
|||
|
|||
<style> |
|||
body { |
|||
padding: 40px; |
|||
} |
|||
|
|||
h1, p { |
|||
text-align: center; |
|||
} |
|||
</style> |
|||
</head> |
|||
<body> |
|||
<h1>Account locked</h1> |
|||
<p> |
|||
Your account is locked, please contact the administrator. |
|||
</p> |
|||
</body> |
|||
</html> |
|||
File diff suppressed because it is too large
Loading…
Reference in new issue