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
Currently, the logic is in the routes.config.php file, and in the rest module ConfigProvider, which is called from the previous file.
That means the env var is read in two places, making it harder to override via config.
Remove the logic from the two files mentioned above, and the access to the env var, and create a post processor that iterates over all routes, and replaces {shortCode} by {shortCode:.+} if the config flag is true.
The text was updated successfully, but these errors were encountered:
Currently, the logic is in the routes.config.php file, and in the rest module ConfigProvider, which is called from the previous file.
That means the env var is read in two places, making it harder to override via config.
Remove the logic from the two files mentioned above, and the access to the env var, and create a post processor that iterates over all routes, and replaces
{shortCode}
by{shortCode:.+}
if the config flag is true.The text was updated successfully, but these errors were encountered: