mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-24 02:59:13 +08:00
filter duplicated action
This commit is contained in:
parent
4820b594a7
commit
312e13416b
@ -219,8 +219,16 @@ func (iama *IamApiServer) PutUserPolicy(s3cfg *iam_pb.S3ApiConfiguration, values
|
||||
if userName != ident.Name {
|
||||
continue
|
||||
}
|
||||
|
||||
existedActions := make(map[string]bool, len(ident.Actions))
|
||||
for _, action := range ident.Actions {
|
||||
existedActions[action] = true
|
||||
}
|
||||
|
||||
for _, action := range actions {
|
||||
ident.Actions = append(ident.Actions, action)
|
||||
if !existedActions[action] {
|
||||
ident.Actions = append(ident.Actions, action)
|
||||
}
|
||||
}
|
||||
return resp, nil
|
||||
}
|
||||
@ -349,7 +357,8 @@ func (iama *IamApiServer) CreateAccessKey(s3cfg *iam_pb.S3ApiConfiguration, valu
|
||||
}
|
||||
if !changed {
|
||||
s3cfg.Identities = append(s3cfg.Identities,
|
||||
&iam_pb.Identity{Name: userName,
|
||||
&iam_pb.Identity{
|
||||
Name: userName,
|
||||
Credentials: []*iam_pb.Credential{
|
||||
{
|
||||
AccessKey: accessKeyId,
|
||||
|
Loading…
Reference in New Issue
Block a user