File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/io/jenkins/plugins/gitlabbranchsource/helpers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,19 +101,19 @@ public static UriTemplate branchUriTemplate(String serverNameOrUrl) {
101
101
102
102
public static UriTemplate mergeRequestUriTemplate (String serverNameOrUrl ) {
103
103
return getUriTemplateFromServer (serverNameOrUrl )
104
- .template ("{/project*}/merge_requests/{iid}" )
104
+ .template ("{/project*}/-/ merge_requests/{iid}" )
105
105
.build ();
106
106
}
107
107
108
108
public static UriTemplate tagUriTemplate (String serverNameOrUrl ) {
109
109
return getUriTemplateFromServer (serverNameOrUrl )
110
- .template ("{/project*}/tree/{tag*}" )
110
+ .template ("{/project*}/-/ tree/{tag*}" )
111
111
.build ();
112
112
}
113
113
114
114
public static UriTemplate commitUriTemplate (String serverNameOrUrl ) {
115
115
return getUriTemplateFromServer (serverNameOrUrl )
116
- .template ("{/project*}/commit/{hash}" )
116
+ .template ("{/project*}/-/ commit/{hash}" )
117
117
.build ();
118
118
}
119
119
You can’t perform that action at this time.
0 commit comments