Skip to content

Commit 8066a16

Browse files
Merge pull request #854 from haesleinhuepf/bugfix-gitlab-access
bugfix: organization members were not authorized to talk to git-bob …
2 parents e60a996 + 38df356 commit 8066a16

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/git_bob/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.27.3"
1+
__version__ = "0.27.4"
22

33
__all__ = (
44
)

src/git_bob/_gitlab_utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def check_access_and_ask_for_approval(user, repository, issue):
479479
project = get_repository_handle(repository)
480480

481481
if "members" in groups:
482-
members = project.members.list()
482+
members = project.members_all.list()
483483
for member in members:
484484
if member.username == user:
485485
access = True

0 commit comments

Comments
 (0)