You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ cbauth = {
51
51
cbsecurity = {
52
52
// The global invalid authentication event or URI or URL to go if an invalid authentication occurs
53
53
"invalidAuthenticationEvent":"",
54
-
// Default Auhtentication Action: override or redirect when a user has not logged in
54
+
// Default Authentication Action: override or redirect when a user has not logged in
55
55
"defaultAuthenticationAction":"redirect",
56
56
// The global invalid authorization event or URI or URL to go if an invalid authorization occurs
57
57
"invalidAuthorizationEvent":"",
@@ -134,7 +134,7 @@ Using the default configuration, this module will register the `Security` interc
134
134
135
135
The interceptor will intercept all calls to your application via the `preProcess()` interception point. Each request will then be validated against any registered security rules and then validated against any handler/action security annotations (if active) via a Security Validator. Also, if the request is made to a module, each module has the capability to have it's own separate validator apart from the global one.
136
136
137
-
> **Info** You can deactive annotation driven security via the `handlerAnnotationSecurity` setting.
137
+
> **Info** You can deactivate annotation driven security via the `handlerAnnotationSecurity` setting.
138
138
139
139
### How does validation happen?
140
140
@@ -327,7 +327,7 @@ component{
327
327
328
328
### Authorization Context
329
329
330
-
You can also give the annotation some value, which can be anything you like: A list of roles, a role, a list of permissions, metadata, etc. Whatever it is, this is the **authorization context** and the security validator must be able to not only authenticate but authorize the context or an invalid authorization will occurr.
330
+
You can also give the annotation some value, which can be anything you like: A list of roles, a role, a list of permissions, metadata, etc. Whatever it is, this is the **authorization context** and the security validator must be able to not only authenticate but authorize the context or an invalid authorization will occur.
0 commit comments