@@ -95,10 +95,10 @@ class MergeRequestManager(ListMixin, RESTManager):
9595"deployed_after" ,
9696 )
9797_types = {
98- "approver_ids" :types .ListAttribute ,
99- "approved_by_ids" :types .ListAttribute ,
100- "in" :types .ListAttribute ,
101- "labels" :types .ListAttribute ,
98+ "approver_ids" :types .CommaSeparatedListAttribute ,
99+ "approved_by_ids" :types .CommaSeparatedListAttribute ,
100+ "in" :types .CommaSeparatedListAttribute ,
101+ "labels" :types .CommaSeparatedListAttribute ,
102102 }
103103
104104
@@ -133,9 +133,9 @@ class GroupMergeRequestManager(ListMixin, RESTManager):
133133"wip" ,
134134 )
135135_types = {
136- "approver_ids" :types .ListAttribute ,
137- "approved_by_ids" :types .ListAttribute ,
138- "labels" :types .ListAttribute ,
136+ "approver_ids" :types .CommaSeparatedListAttribute ,
137+ "approved_by_ids" :types .CommaSeparatedListAttribute ,
138+ "labels" :types .CommaSeparatedListAttribute ,
139139 }
140140
141141
@@ -455,10 +455,10 @@ class ProjectMergeRequestManager(CRUDMixin, RESTManager):
455455"wip" ,
456456 )
457457_types = {
458- "approver_ids" :types .ListAttribute ,
459- "approved_by_ids" :types .ListAttribute ,
460- "iids" :types .ListAttribute ,
461- "labels" :types .ListAttribute ,
458+ "approver_ids" :types .CommaSeparatedListAttribute ,
459+ "approved_by_ids" :types .CommaSeparatedListAttribute ,
460+ "iids" :types .CommaSeparatedListAttribute ,
461+ "labels" :types .CommaSeparatedListAttribute ,
462462 }
463463
464464def get (