1
0
Fork 0

Merge branch 'BlackDex-add-mfa-icon-to-orgs'

Dieser Commit ist enthalten in:
Daniel García 2023-01-12 19:16:16 +01:00
Commit ae9553ca1c
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: FC8A7D14C3CD543A

Datei anzeigen

@ -2,7 +2,7 @@ use num_traits::FromPrimitive;
use serde_json::Value;
use std::cmp::Ordering;
use super::{CollectionUser, GroupUser, OrgPolicy, OrgPolicyType, User};
use super::{CollectionUser, GroupUser, OrgPolicy, OrgPolicyType, TwoFactor, User};
use crate::CONFIG;
db_object! {
@ -365,6 +365,8 @@ impl UserOrganization {
self.status
};
let twofactor_enabled = !TwoFactor::find_by_user(&user.uuid, conn).await.is_empty();
json!({
"Id": self.uuid,
"UserId": self.user_uuid,
@ -374,6 +376,7 @@ impl UserOrganization {
"Status": status,
"Type": self.atype,
"AccessAll": self.access_all,
"TwoFactorEnabled": twofactor_enabled,
"Object": "organizationUserUserDetails",
})