If your controller has the `@Transactional` notati...
# questions
d
If your controller has the
@Transactional
notation, just try replacing
urbanAuthService.save(newUrbanAuth)
for
newUrbanAuth.save(failOnError: true).
With some luck that will let you see the error. Hope it helps.
👍 2