File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ class Issues extends BaseService {
46
46
} ) ;
47
47
}
48
48
49
+ participants ( projectId , issueId ) {
50
+ const [ pId , iId ] = [ projectId , issueId ] . map ( encodeURIComponent ) ;
51
+
52
+ return RequestHelper . get ( this , `projects/${ pId } /issues/${ iId } /participants` ) ;
53
+ }
54
+
49
55
remove ( projectId , issueId ) {
50
56
const [ pId , iId ] = [ projectId , issueId ] . map ( encodeURIComponent ) ;
51
57
@@ -76,12 +82,6 @@ class Issues extends BaseService {
76
82
return RequestHelper . post ( this , `projects/${ pId } /issues/${ iId } /subscribe` , options ) ;
77
83
}
78
84
79
- participants ( projectId , issueId ) {
80
- const [ pId , iId ] = [ projectId , issueId ] . map ( encodeURIComponent ) ;
81
-
82
- return RequestHelper . get ( this , `projects/${ pId } /issues/${ iId } /participants` ) ;
83
- }
84
-
85
85
timeStats ( projectId , mergerequestId ) {
86
86
const [ pId , mId ] = [ projectId , mergerequestId ] . map ( encodeURIComponent ) ;
87
87
You can’t perform that action at this time.
0 commit comments