Fix policy.json file format
There is an extra comma in policy.json, so if we try to read this file, using json.loads(), we'll get an error. Removed a trailing comma from json structure in policy.json file. Change-Id: I94944e99f8cad03e4e6cc8a3532c63afd9bcc6b7
This commit is contained in:
parent
3c92c0e065
commit
2bffc5babe
@ -2,5 +2,5 @@
|
|||||||
"admin_api": "is_admin:True",
|
"admin_api": "is_admin:True",
|
||||||
"admin_or_owner": "is_admin:True or project_id:%(project_id)s",
|
"admin_or_owner": "is_admin:True or project_id:%(project_id)s",
|
||||||
"context_is_admin": "role:admin",
|
"context_is_admin": "role:admin",
|
||||||
"default": "rule:admin_or_owner",
|
"default": "rule:admin_or_owner"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user