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
Right now when using custom paths it only calls the given function when the paths match exactly
This should be made a bit more generic so for example the function for the path "/users" should also be called if the requested path is "/users/".
You should also be able to add paths like "/users/*" to handle every path that matches this pattern.
Note: It should still check for the exact matches before searching for patterns to improve performance.
The text was updated successfully, but these errors were encountered:
Right now when using custom paths it only calls the given function when the paths match exactly
This should be made a bit more generic so for example the function for the path "/users" should also be called if the requested path is "/users/".
You should also be able to add paths like "/users/*" to handle every path that matches this pattern.
Note: It should still check for the exact matches before searching for patterns to improve performance.
The text was updated successfully, but these errors were encountered: