Skip to content

Commit

Permalink
Fix display of LDAP users and groups
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilVanB committed Aug 8, 2024
1 parent 153e2bc commit 12fcfc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Security/Permission/SubjectDomainLdapGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function getAssignableSubjects(): array
return array_map(
fn($group) => new AssignableSubject(
self::SLUG,
$group['cn'],
$group['cn'] . ' (LDAP)',
$this->getIconClass(),
null,
null,
Expand Down
2 changes: 1 addition & 1 deletion Security/Permission/SubjectDomainLdapUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function getAssignableSubjects(): array
return array_map(
fn($user) => new AssignableSubject(
self::SLUG,
$user['cn'],
$user['cn'] . ' (LDAP)',
$this->getIconClass(),
null,
null,
Expand Down

0 comments on commit 12fcfc2

Please sign in to comment.