Skip to content

Commit 221c2c8

Browse files
committed
fix: archiving to BagIt format circle selection did not include all circles
1 parent e1fa729 commit 221c2c8

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
1.1.2
2+
- fix: archiving to BagIt format circle selection did not include all circles
13
1.1.1
24
- fix: first-time initialization failed (#95)
35
1.1.0

dcoraid/gui/wizard_bagit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(self, *args, **kwargs):
4242

4343
# fetch the circles that the user is a member of
4444
circles = self.api.get("organization_list_for_user",
45-
permission="create_dataset")
45+
permission="read")
4646
for ci in circles:
4747
self.comboBox_circles.addItem(
4848
ci["title"] if ci["title"] else ci["name"], ci["name"])

0 commit comments

Comments
 (0)