Skip to content

Commit e7ed658

Browse files
committed
Fix: Correct typo in configured interception point
Fixes a typo in the `cbSecurity_onInvalidAuthorization` interception point declaration. Previously, the typo would prevent ColdBox from allowing the correctly-typed interception point from ever triggering an interception listener.
1 parent a6dc311 commit e7ed658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ModuleConfig.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ component {
110110
customInterceptionPoints = [
111111
// Validator Events
112112
"cbSecurity_onInvalidAuthentication",
113-
"cbSecurity_onInvalidAuhtorization",
113+
"cbSecurity_onInvalidAuthorization",
114114
// JWT Events
115115
"cbSecurity_onJWTCreation",
116116
"cbSecurity_onJWTInvalidation",

0 commit comments

Comments
 (0)