Skip to content

Commit

Permalink
fixed wrangler permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
achernatsky-cybervision committed Oct 21, 2022
1 parent c65f775 commit d18add7
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,13 @@ public static List<EntityTypeWithPermission> convertToEntityTypeWithPermission(R
case USE_WRANGLER:
return Arrays.asList(
new EntityTypeWithPermission(EntityType.APPLICATION, StandardPermission.GET, true),
new EntityTypeWithPermission(EntityType.DATASET, StandardPermission.LIST, true)
new EntityTypeWithPermission(EntityType.DATASET, StandardPermission.LIST, true),
new EntityTypeWithPermission(EntityType.SYSTEM_APP_ENTITY, StandardPermission.LIST),
new EntityTypeWithPermission(EntityType.SYSTEM_APP_ENTITY, StandardPermission.USE),
new EntityTypeWithPermission(EntityType.SYSTEM_APP_ENTITY, StandardPermission.GET),
new EntityTypeWithPermission(EntityType.SYSTEM_APP_ENTITY, StandardPermission.CREATE),
new EntityTypeWithPermission(EntityType.SYSTEM_APP_ENTITY, StandardPermission.DELETE),
new EntityTypeWithPermission(EntityType.SYSTEM_APP_ENTITY, StandardPermission.UPDATE)
);
case MANAGE_SECURE_KEY:
return Arrays.asList(
Expand Down

0 comments on commit d18add7

Please sign in to comment.