@@ -1856,12 +1856,18 @@ class ProjectMergeRequestManager(CRUDMixin, RESTManager):
1856
1856
_create_attrs = (
1857
1857
('source_branch' , 'target_branch' , 'title' ),
1858
1858
('assignee_id' , 'description' , 'target_project_id' , 'labels' ,
1859
- 'milestone_id' , 'remove_source_branch' )
1859
+ 'milestone_id' , 'remove_source_branch' , 'allow_maintainer_to_push' )
1860
1860
)
1861
- _update_attrs = (tuple (), ('target_branch' , 'assignee_id' , 'title' ,
1862
- 'description' , 'state_event' , 'labels' ,
1863
- 'milestone_id' ))
1864
- _list_filters = ('iids' , 'state' , 'order_by' , 'sort' )
1861
+ _update_attrs = (tuple (),
1862
+ ('target_branch' , 'assignee_id' , 'title' , 'description' ,
1863
+ 'state_event' , 'labels' , 'milestone_id' ,
1864
+ 'remove_source_branch' , 'discussion_locked' ,
1865
+ 'allow_maintainer_to_push' ))
1866
+ _list_filters = ('state' , 'order_by' , 'sort' , 'milestone' , 'view' ,
1867
+ 'labels' , 'created_after' , 'created_before' ,
1868
+ 'updated_after' , 'updated_before' , 'scope' , 'author_id' ,
1869
+ 'assignee_id' , 'my_reaction_emoji' , 'source_branch' ,
1870
+ 'target_branch' , 'search' )
1865
1871
_types = {'labels' : types .ListAttribute }
1866
1872
1867
1873
0 commit comments