We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In SpringSecurityMockGrailsPlugin.groovy, I noticed that fullName was not getting set. Current code is:
fullName conf.mock.fullName
New code should be:
fullName = conf.mock.fullName
Here's the excerpt with the unfixed code
// mock user details service userDetailsService(MockUserDetailsService) { // Load LDAP if configured if (conf.ldap.active && conf.ldap.authorities.retrieveGroupRoles && conf.ldap.usernameMapper.userDnBase) { userDnBase = conf.ldap.usernameMapper.userDnBase ldapAuthoritiesPopulator = ref('ldapAuthoritiesPopulator') } // Load user attributes fullName conf.mock.fullName email = conf.mock.email mockRoles = conf.mock.roles }
The text was updated successfully, but these errors were encountered:
Resolving issues #3, #4, #5, #6
1e30b82
Fixing issues * Updating to grails 2.2.2 : #6 * Adding support for rejectIfNoRule : #3, #4 * fullName not getting propogated : # 5
No branches or pull requests
In SpringSecurityMockGrailsPlugin.groovy, I noticed that fullName was not getting set. Current code is:
fullName conf.mock.fullName
New code should be:
fullName = conf.mock.fullName
Here's the excerpt with the unfixed code
// mock user details service
userDetailsService(MockUserDetailsService) {
// Load LDAP if configured
if (conf.ldap.active && conf.ldap.authorities.retrieveGroupRoles && conf.ldap.usernameMapper.userDnBase) {
userDnBase = conf.ldap.usernameMapper.userDnBase
ldapAuthoritiesPopulator = ref('ldapAuthoritiesPopulator')
}
// Load user attributes
fullName conf.mock.fullName
email = conf.mock.email
mockRoles = conf.mock.roles
}
The text was updated successfully, but these errors were encountered: