cbSecurity Module

Hi,

I’m using cbSecurity module with below JSON rule. I want all the handlers to be secured so, do i need to add all the handlers in securelist ?

[
{
“ruleName”: “secureAccess”,
“comment”: “Allow access only after login”,
“whitelist”: “Security.login,Security.doLogin”,
“securelist”: “^Security,^Main”,
“match”: “event”,
“roles”: “admin”,
“redirect”: “Security.login”,
“useSSL”: false
}
]

No, the whitelist and securelist are based on regular expressions. So you can create a regex that matches everything if you want.