-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
72 additions
and
53 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 |
---|---|---|
|
@@ -11,4 +11,6 @@ test-harness/logs/** | |
test-harness/modules/** | ||
|
||
# log files | ||
logs/** | ||
logs/** | ||
|
||
modules/** |
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
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
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
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
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
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,17 +1,21 @@ | ||
<cfscript> | ||
globalSettings = prc.properties.filter( function( key ){ | ||
return !listFindNoCase( "rules,jwt", key ); | ||
} ); | ||
jwtSettings = prc.properties.jwt.filter( function( key ){ | ||
return !listFindNoCase( "secretKey", key ); | ||
} ); | ||
</cfscript> | ||
<cfoutput> | ||
<div class="mt-2"> | ||
|
||
<p>Here is a listing of the settings for the global interceptor <code>cbsecurity@global</code>:</p> | ||
|
||
<cfdump var="#prc.properties.filter( function( key ){ | ||
return !listFindNoCase( "rules,jwt", key ); | ||
} )#"> | ||
<cfdump var="#globalSettings#"> | ||
|
||
<h2>JWT Settings</h2> | ||
<p>Here are your settings for your Json Web Tokens Security. Please note your <code>secretKey</code> is not shown.</p> | ||
<cfdump var="#prc.properties.jwt.filter( function( key ){ | ||
return !listFindNoCase( "secretKey", key ); | ||
} )#"> | ||
<cfdump var="#jwtSettings#"> | ||
|
||
</div> | ||
</cfoutput> |