Skip to content

Commit e16e85c

Browse files
committedNov 21, 2019
Added strict check argument to routeAuthenticated
1 parent 9e4f492 commit e16e85c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/providers/core.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ class CoreServiceProvider extends ServiceProvider {
100100
...middleware.route
101101
], cb),
102102

103-
routeAuthenticated: (method, uri, cb, groups = []) =>
103+
routeAuthenticated: (method, uri, cb, groups = [], strict = requireAllGroups) =>
104104
app[method.toLowerCase()](uri, [
105105
...middleware.routeAuthenticated,
106-
isAuthenticated(groups, requireAllGroups)
106+
isAuthenticated(groups, strict)
107107
], cb)
108108
}));
109109
}

0 commit comments

Comments
 (0)
Please sign in to comment.