pimcore-members icon indicating copy to clipboard operation
pimcore-members copied to clipboard

[RoleOptionsProvider] Default Role not visible in MembersGroup object

Open scrummer opened this issue 7 months ago • 1 comments

Q A
Bug report? yes
Feature request? no
BC Break report? no
RFC? no

In RoleOptionsProvider:49 the ROLE_USER-role is proposed as default role to be available for all group objects. This method tho is never called and therefore there are no available roles to associate with groups (unless you configure some explicitly).

With no roles configured

security:    
    role_hierarchy:
        # Pimcore admin  // DO NOT CHANGE!
        ROLE_PIMCORE_ADMIN: [ROLE_PIMCORE_USER]

Result: image

With a user-defined role

security:
    role_hierarchy:
        # Pimcore admin  // DO NOT CHANGE!
        ROLE_PIMCORE_ADMIN: [ROLE_PIMCORE_USER]
        SOME_SPECIAL_ROLE: [ROLE_USER]

Result: image

scrummer avatar Jul 12 '24 16:07 scrummer