invoke icon indicating copy to clipboard operation
invoke copied to clipboard

Invoke: Route Authentication/Authorization Management

Results 5 invoke issues
Sort by recently updated
recently updated
newest added

for example I have this config ``` yml /user/login: groups: [Admin] methods: [post] /user/login: groups: [Guest] methods: [get] ``` It seem yml loader wont load same key twice, is there...

for example I have this config ``` yml /show/news: groups: [Guest, Member] methods: [post] ``` In those config user will need in `Guest` AND `Member`, is this library designed that...

Currently Invoke only supports exact path matching. The concept of "cascading" paths should be introduced, allowing a developer to say "anything under /admin is protected" by just specifying one entry...

Right now the matches are just held in an array in the `Enforcer` class and evaluated for pass/fail as they fall. It's only possible to get information on the last...

Right now the parameter matches are exact. It should support regular expressions in the future. This would need to be a change in the `route/HasParameters` match type to evaluate more...