Something went wrong while setting issue due date.
[CORE] - UsersGroupsRolesAttribute attribute must include dyngroup as well
Closed
[CORE] - UsersGroupsRolesAttribute attribute must include dyngroup as well
Following code must be adapted in order to include dyngroup in the below constructor.
['user', 'group', 'role', 'ogroup', 'dyngroup'],
class UsersGroupsRolesAttribute extends ObjectsAttribute
{
function __construct (string $label, string $description, string $ldapName, bool $required = FALSE, array $defaultValue = [], string $store_attr = 'dn', string $display_attr = 'nameAttr', array $filterElementDefinitions = NULL, string $acl = '')
{
parent::__construct($label, $description, $ldapName, $required, ['user', 'group', 'role', 'ogroup'], $defaultValue, $store_attr, $display_attr, $filterElementDefinitions, $acl);
}
}