Skip to content

Commit

Permalink
More efficient .get() for group members.
Browse files Browse the repository at this point in the history
Fixes #499
  • Loading branch information
ericfrederich committed May 17, 2018
1 parent 4cc9739 commit dabfeb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/v4/objects.py
Expand Up @@ -547,7 +547,7 @@ class GroupMember(SaveMixin, ObjectDeleteMixin, RESTObject):
_short_print_attr = 'username'


class GroupMemberManager(GetFromListMixin, CreateMixin, UpdateMixin,
class GroupMemberManager(ListMixin, GetMixin, CreateMixin, UpdateMixin,
DeleteMixin, RESTManager):
_path = '/groups/%(group_id)s/members'
_obj_cls = GroupMember
Expand Down

0 comments on commit dabfeb3

Please sign in to comment.