We have completed 95% of our application. We want to add additional argument mode=1 to all templates URLS’s in the browser. Is it possible by adding in one place like routing file,
The URL should be like be visible in the address bar.
Suppose, the original url is
http://localhost:9000/design/customersList
it needs to be add the mode=1, which will be like
http://localhost:9000/design/customersList?mode=1
Generally
http://localhost:9000/{module}/{action}?mode=1
I couldn’t find any inbuild option in play to do that. So i added the mode in every template.