mirror of
git://git.proxmox.com/git/pve-access-control.git
synced 2025-01-03 01:17:55 +03:00
api: permissions: allow users to view their own permissions
even when specifying an explicit userid matching their own. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com> Tested-by: Daniel Kral <d.kral@proxmox.com>
This commit is contained in:
parent
37a813d721
commit
6287395114
@ -486,14 +486,14 @@ __PACKAGE__->register_method({
|
||||
my ($param) = @_;
|
||||
|
||||
my $rpcenv = PVE::RPCEnvironment::get();
|
||||
my $authid = $rpcenv->get_user();
|
||||
|
||||
my $userid = $param->{userid};
|
||||
if (defined($userid)) {
|
||||
$rpcenv->check($rpcenv->get_user(), '/access', ['Sys.Audit']);
|
||||
} else {
|
||||
$userid = $rpcenv->get_user();
|
||||
}
|
||||
$userid = $authid if !defined($userid);
|
||||
|
||||
if ($userid ne $authid) {
|
||||
$rpcenv->check($rpcenv->get_user(), '/access', ['Sys.Audit']);
|
||||
}
|
||||
my $res;
|
||||
|
||||
if (my $path = $param->{path}) {
|
||||
|
Loading…
Reference in New Issue
Block a user