Hi,
I'm using the Acegi (AKA Sprign Security) plugin in my Grails app. InSecurityConfig.groovy
I have added the line
userName = 'email'
such that the email field is used as the username. I find that if I change the email field and save the object, e.g.
user.email = '[email protected]'
user.save(failOnError: true)
The save completes without error, but the email field is not actually updated. My guess is that the Acegi plugin prohibits changing the username field, but I'd be grateful if someone could confirm.
Thanks, Don