Show More
@@ -54,6 +54,8 b' class TestGrantUserGroupPermissionFromRe' | |||
|
54 | 54 | self, name, perm, apply_to_children, user_util): |
|
55 | 55 | user_group = user_util.create_user_group() |
|
56 | 56 | repo_group = user_util.create_repo_group() |
|
57 | user_util.create_repo(parent=repo_group) | |
|
58 | ||
|
57 | 59 | id_, params = build_data( |
|
58 | 60 | self.apikey, |
|
59 | 61 | 'grant_user_group_permission_to_repo_group', |
@@ -451,7 +451,7 b' def grant_user_permission_to_repo_group(' | |||
|
451 | 451 | perm = get_perm_or_error(perm, prefix='group.') |
|
452 | 452 | apply_to_children = Optional.extract(apply_to_children) |
|
453 | 453 | |
|
454 | perm_additions = [[user.user_id, perm, "user"]] | |
|
454 | perm_additions = [[user.user_id, perm.permission_name, "user"]] | |
|
455 | 455 | try: |
|
456 | 456 | RepoGroupModel().update_permissions(repo_group=repo_group, |
|
457 | 457 | perm_additions=perm_additions, |
@@ -609,7 +609,7 b' def grant_user_group_permission_to_repo_' | |||
|
609 | 609 | |
|
610 | 610 | apply_to_children = Optional.extract(apply_to_children) |
|
611 | 611 | |
|
612 | perm_additions = [[user_group.users_group_id, perm, "user_group"]] | |
|
612 | perm_additions = [[user_group.users_group_id, perm.permission_name, "user_group"]] | |
|
613 | 613 | try: |
|
614 | 614 | RepoGroupModel().update_permissions(repo_group=repo_group, |
|
615 | 615 | perm_additions=perm_additions, |
General Comments 0
You need to be logged in to leave comments.
Login now