Skip to content

Commit 728c9cd

Browse files
committed
fixup! feat(admin): Add OIDC information
1 parent 21e54a9 commit 728c9cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: admin/app/components/users/user-overview.gjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default class UserOverview extends Component {
9191
return this.args.user.username ? null : 'obligatoire';
9292
}
9393

94-
get useOidcAuthentication() {
94+
get hasOidcAuthentication() {
9595
const oidcProvidersCodes = this.oidcIdentityProviders.list.map((provider) => provider.code);
9696
const userHasThisOidcAuthenticationMethod = this.authenticationMethods.any((authenticationMethod) =>
9797
oidcProvidersCodes.includes(authenticationMethod.identityProvider),
@@ -345,7 +345,7 @@ export default class UserOverview extends Component {
345345
</span>
346346
</li>
347347
<li class="user-detail-personal-information-section__user-informations flex space-between gap-4x">
348-
<span>{{t "components.users.user-overview.sso"}} : {{t this.useOidcAuthentication}}</span>
348+
<span>{{t "components.users.user-overview.sso"}} : {{t this.hasOidcAuthentication}}</span>
349349
</li>
350350
</ul>
351351

0 commit comments

Comments
 (0)