grails-spring-security-core
grails-spring-security-core copied to clipboard
Grails Spring Security Core Plugin
### Steps to Reproduce 1. Login to admin console 2. Try to assign roles to role groups 3. Try to assign role groups to users ### Expected Behaviour UI should...
There are two pieces of misplaced text in the Reference Documentation that should be rearranged. Section 5.2 ends with: > The post-registration destination url is configurable in grails-app/conf/application.groovy using the...
### Feature description The `grails s2ui-override ` commands don't seem to work with Grails 6. I tried an approach similar to `spring-security-core` w/ `./gradlew runCommand "-Pargs=s2ui-override auth"` but this throws...
AuthenticationToken resolving doesn't support MultiTenant implementation. Like: ```java import grails.gorm.MultiTenant class AuthenticationToken implements MultiTenant { Long tenantId String username String token static constraints = { } } ``` With this...
I upgraded from version 3.0.0 to 3.0.1, when I log into my app the expression evaluates to false, but the user has the corresponding role.
doFilter method inside class RestTokenValidationFilter in invoking twice on every call and inside doFilter method there is a call for authentication which is also invoking twice any solution to reduce...
If someone makes the mistake of trying to access springSecurityService.principal during grails bootstrap (which will be null), when a user finally logs in their security object gets pinned into memory....
I tried to change the get algorithm to RS256 to match the client. ``` plugin: springsecurity: rest: token: generation: jwt: algorithm: "RS256" ``` However, it JwtService only seems to return...