Skip to content

Commit

Permalink
Fix listing of roles
Browse files Browse the repository at this point in the history
  • Loading branch information
F21 committed Mar 21, 2024
1 parent b17c81c commit 77ffcdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion path_roles.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func (b *grafanaBackend) pathRoleExistenceCheck(ctx context.Context, req *logica
}

func (b *grafanaBackend) pathRolesList(ctx context.Context, req *logical.Request, d *framework.FieldData) (*logical.Response, error) {
entries, err := req.Storage.List(ctx, "role/")
entries, err := req.Storage.List(ctx, "roles/")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 77ffcdc

Please sign in to comment.