Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connect request review button to kinto publish task fixes #2878 #3013

Merged
merged 9 commits into from
Jul 14, 2020
3 changes: 2 additions & 1 deletion app/bin/setup_kinto.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def create_user(user, passw):
id=os.environ["KINTO_COLLECTION"],
bucket=os.environ["KINTO_BUCKET"],
permissions={
"read": ["system.Everyone"],
"write": [
(
f"/buckets/{os.environ['KINTO_BUCKET']}/groups/"
Expand All @@ -72,7 +73,7 @@ def create_user(user, passw):
f"/buckets/{os.environ['KINTO_BUCKET']}/groups/"
f"{os.environ['KINTO_COLLECTION']}-reviewers"
),
]
],
},
if_not_exists=True,
)
Expand Down
Loading