Skip to content

Commit

Permalink
add extended perm to groups (#1193)
Browse files Browse the repository at this point in the history
  • Loading branch information
IrinaSouth authored Jan 13, 2025
1 parent c0033c6 commit 888635b
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,13 @@ class _GroupPermissionDetailState extends State<_GroupPermissionDetailWidget> {
envId: env.id,
newEnvironmentRoles: newEnvironmentRoles,
roleType: RoleType.CHANGE_VALUE),
if (widget.bloc.mrClient.identityProviders
.featurePropertyExtendedDataEnabled)
PermissionsCheckbox(
envId: env.id,
newEnvironmentRoles: newEnvironmentRoles,
roleType: RoleType.EXTENDED_DATA,
),
]));
}

Expand Down Expand Up @@ -408,6 +415,14 @@ class _GroupPermissionDetailState extends State<_GroupPermissionDetailWidget> {
style: headerStyle,
),
)),
Center(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: Text(
'Read Extended Feature Data',
style: headerStyle,
),
)),
]);
}

Expand Down

0 comments on commit 888635b

Please sign in to comment.