File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change
1
+ <cfscript >
2
+ globalSettings = prc .properties .filter ( function ( key ){
3
+ return ! listFindNoCase ( " rules,jwt" , key );
4
+ } );
5
+ jwtSettings = prc .properties .jwt .filter ( function ( key ){
6
+ return ! listFindNoCase ( " secretKey" , key );
7
+ } );
8
+ </cfscript >
1
9
<cfoutput >
2
10
<div class =" mt-2" >
3
11
4
12
<p >Here is a listing of the settings for the global interceptor <code >cbsecurity@global</code >:</p >
5
13
6
- <cfdump var =" # prc.properties.filter( function( key ){
7
- return !listFindNoCase( " rules ,jwt " , key );
8
- } )# " >
14
+ <cfdump var =" #globalSettings #" >
9
15
10
16
<h2 >JWT Settings</h2 >
11
17
<p >Here are your settings for your Json Web Tokens Security. Please note your <code >secretKey</code > is not shown.</p >
12
- <cfdump var =" # prc.properties.jwt.filter( function( key ){
13
- return !listFindNoCase( " secretKey " , key );
14
- } )# " >
18
+ <cfdump var =" #jwtSettings #" >
15
19
16
20
</div >
17
21
</cfoutput >
You can’t perform that action at this time.
0 commit comments