my question is: It there any way that in renderEditor.template know what user is logged in and what roles does he have?
What I want to do: In my app i want some field change when logged user is admin ("ROLE_ADMIN") - normal user will have is html select tag only 1 option, by default selected, and when admin user will be logged in, list of all users appear.
I'm using Spring Security Plugin + Grails 2.1.1.
What I have already tried:
- Add Spring Security Service (
def springSecurityService) but it was always null - Try to pass boolean argument - no effect
Any help will be appreciated!
EDIT Many thanks for your answers. However, my question wasn't precised enough, so I include some pseudocode that maybe explain better what I want achieve (method from renderTemplate.template)
private renderManyToOne(domainClass,property) {
if (property.association) {
def sb = new StringBuilder()
sb << '<g:select'
...
if (/*loged user is admin*/) {
sb << ' from="${' << property.type.name << '.list()}"'
}else{
sb << ' from="${user}"'/*only loged user can be selected*/
}
...
sb << '/>'
sb as String
}
}