mirror of
https://git.proxmox.com/git/pve-access-control
synced 2025-10-04 06:58:44 +00:00
api: users: s/realmtype/realm-type/ in response
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
8bb59c2612
commit
3f6023f55c
@ -150,9 +150,10 @@ __PACKAGE__->register_method ({
|
||||
tokenid => get_standard_option('token-subid'),
|
||||
}),
|
||||
},
|
||||
realmtype => {
|
||||
type => 'string',
|
||||
'realm-type' => {
|
||||
type => 'string', format => 'pve-realm',
|
||||
description => 'The type of the users realm',
|
||||
optional => 1, # it should always be there, but we use conditional code below, so..
|
||||
},
|
||||
},
|
||||
},
|
||||
@ -192,9 +193,8 @@ __PACKAGE__->register_method ({
|
||||
if defined($entry->{tokens});
|
||||
|
||||
my (undef, undef, $realm) = PVE::AccessControl::verify_username($user, 1);
|
||||
|
||||
if (defined($realm) && $domainids->{$realm}) {
|
||||
$entry->{realmtype} = $domainids->{$realm}->{type};
|
||||
if (defined($realm) && exists($domainids->{$realm})) {
|
||||
$entry->{'realm-type'} = $domainids->{$realm}->{type};
|
||||
}
|
||||
|
||||
$entry->{userid} = $user;
|
||||
|
Loading…
Reference in New Issue
Block a user