Skip to content

Commit 908d79f

Browse files
author
Gauvain Pocentek
committed
feat: add support for board update
Closes python-gitlab#801
1 parent 51751c5 commit 908d79f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

gitlab/v4/objects.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -693,11 +693,11 @@ class GroupBoardListManager(CRUDMixin, RESTManager):
693693
_update_attrs = (("position",), tuple())
694694

695695

696-
class GroupBoard(ObjectDeleteMixin, RESTObject):
696+
class GroupBoard(SaveMixin, ObjectDeleteMixin, RESTObject):
697697
_managers = (("lists", "GroupBoardListManager"),)
698698

699699

700-
class GroupBoardManager(NoUpdateMixin, RESTManager):
700+
class GroupBoardManager(CRUDMixin, RESTManager):
701701
_path = "/groups/%(group_id)s/boards"
702702
_obj_cls = GroupBoard
703703
_from_parent_attrs = {"group_id": "id"}
@@ -1432,11 +1432,11 @@ class ProjectBoardListManager(CRUDMixin, RESTManager):
14321432
_update_attrs = (("position",), tuple())
14331433

14341434

1435-
class ProjectBoard(ObjectDeleteMixin, RESTObject):
1435+
class ProjectBoard(SaveMixin, ObjectDeleteMixin, RESTObject):
14361436
_managers = (("lists", "ProjectBoardListManager"),)
14371437

14381438

1439-
class ProjectBoardManager(NoUpdateMixin, RESTManager):
1439+
class ProjectBoardManager(CRUDMixin, RESTManager):
14401440
_path = "/projects/%(project_id)s/boards"
14411441
_obj_cls = ProjectBoard
14421442
_from_parent_attrs = {"project_id": "id"}

0 commit comments

Comments
 (0)