Skip to content

Commit

Permalink
[Fleet] Allow to upload package for non superuser
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Mar 6, 2024
1 parent 555b7b6 commit cd35a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/fleet/common/authz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const calculateAuthz = ({
installPackages: fleet.all && integrations.all,
upgradePackages: fleet.all && integrations.all,
removePackages: fleet.all && integrations.all,
uploadPackages: isSuperuser,
uploadPackages: fleet.all && integrations.all,

readPackageSettings: fleet.all && integrations.all,
writePackageSettings: fleet.all && integrations.all,
Expand Down

0 comments on commit cd35a9d

Please sign in to comment.