Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f539c36

Browse filesBrowse files
authored
Merge pull request python-gitlab#804 from python-gitlab/feat/update_board
feat: add support for board update
2 parents 2ea8eb8 + 908d79f commit f539c36
Copy full SHA for f539c36

File tree

Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed
Open diff view settings
Collapse file

‎gitlab/v4/objects.py‎

Copy file name to clipboardExpand all lines: gitlab/v4/objects.py
+4-4Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.