Groups page ux refactor (#1183)

This commit is contained in:
Prakash Senthil Vel
2021-11-03 22:42:31 +05:30
committed by GitHub
parent acd785dfe0
commit 4e7559f354
6 changed files with 568 additions and 105 deletions

View File

@@ -33,6 +33,7 @@ var (
users = "/users"
usersDetail = "/users/:userName+"
groups = "/groups"
groupsDetails = "/groups/:groupName+"
iamPolicies = "/policies"
policiesDetail = "/policies/*"
dashboard = "/dashboard"
@@ -317,6 +318,7 @@ var endpointRules = map[string]ConfigurationActionSet{
users: usersActionSet,
usersDetail: usersActionSet,
groups: groupsActionSet,
groupsDetails: groupsActionSet,
iamPolicies: iamPoliciesActionSet,
policiesDetail: iamPoliciesActionSet,
dashboard: dashboardActionSet,

View File

@@ -70,7 +70,7 @@ func TestGetAuthorizedEndpoints(t *testing.T) {
"admin:*",
},
},
want: 32,
want: 33,
},
{
name: "all s3 endpoints",
@@ -89,7 +89,7 @@ func TestGetAuthorizedEndpoints(t *testing.T) {
"s3:*",
},
},
want: 34,
want: 35,
},
{
name: "Console User - default endpoints",