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
v0.8 introduced using regex to be able to register the end-point handler.
It could be useful, however, to use the regex functionality to assign portions of the URL to the functions parameters in order to not have to apply the regex twice.
Inspect the target function's callspec to determine what parameters to provide
Update the registration function to tell it whether or not to forwards the regex group matches (if any) to the function. The registration might be able to validate that groups are part of the regex result as part of the process.
v0.8 introduced using regex to be able to register the end-point handler.
It could be useful, however, to use the regex functionality to assign portions of the URL to the functions parameters in order to not have to apply the regex twice.
The functions currently look like the following:
Under this proposal, the functions could look like:
The text was updated successfully, but these errors were encountered: