Change or create URL mapping dynamically in Grails Acegi plugin
Posted
by firnnauriel
on Stack Overflow
See other posts from Stack Overflow
or by firnnauriel
Published on 2010-05-11T10:51:17Z
Indexed on
2010/05/11
10:54 UTC
Read the original article
Hit count: 215
How can i modify the Url mappings in acegi 0.5.2 dynamically? Let's say I have this in my UrlMappings.groovy:
"/"(controller:'home')
At some point or event in the app, I want to change it to:
"/"(controller:'url')
Is this possible? Thanks!
© Stack Overflow or respective owner