-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ofer Levi <[email protected]>
- Loading branch information
1 parent
ddfa942
commit 7fc0642
Showing
57 changed files
with
4,178 additions
and
3,698 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
arrowParens: always | ||
bracketSpacing: true | ||
endOfLine: lf | ||
jsxBracketSameLine: false | ||
jsxSingleQuote: true | ||
semi: true | ||
singleQuote: true | ||
tabWidth: 4 | ||
trailingComma: es5 | ||
useTabs: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
ALLOW: "Access Check was explicitly allowed", | ||
DENY: "Access Check was explicitly denied", | ||
DENY_NO_MATCH: "Access denied due to no match to any of the assertions defined in domain policy file", | ||
DENY_ROLETOKEN_EXPIRED: "Access denied due to expired RoleToken", | ||
DENY_ROLETOKEN_INVALID: "Access denied due to invalid RoleToken", | ||
DENY_DOMAIN_MISMATCH: "Access denied due to domain mismatch between Resource and RoleToken", | ||
DENY_DOMAIN_NOT_FOUND: "Access denied due to domain not found in library cache", | ||
DENY_DOMAIN_EXPIRED: "Access denied due to expired domain policy file", | ||
DENY_DOMAIN_EMPTY: "Access denied due to no policies in the domain file", | ||
DENY_INVALID_PARAMETERS: "Access denied due to invalid/empty action/resource values", | ||
ALLOW: 'Access Check was explicitly allowed', | ||
DENY: 'Access Check was explicitly denied', | ||
DENY_NO_MATCH: | ||
'Access denied due to no match to any of the assertions defined in domain policy file', | ||
DENY_ROLETOKEN_EXPIRED: 'Access denied due to expired RoleToken', | ||
DENY_ROLETOKEN_INVALID: 'Access denied due to invalid RoleToken', | ||
DENY_DOMAIN_MISMATCH: | ||
'Access denied due to domain mismatch between Resource and RoleToken', | ||
DENY_DOMAIN_NOT_FOUND: | ||
'Access denied due to domain not found in library cache', | ||
DENY_DOMAIN_EXPIRED: 'Access denied due to expired domain policy file', | ||
DENY_DOMAIN_EMPTY: 'Access denied due to no policies in the domain file', | ||
DENY_INVALID_PARAMETERS: | ||
'Access denied due to invalid/empty action/resource values', | ||
}; |
Oops, something went wrong.