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) {
101101
102102 public static UriTemplate mergeRequestUriTemplate (String serverNameOrUrl ) {
103103 return getUriTemplateFromServer (serverNameOrUrl )
104- .template ("{/project*}/merge_requests/{iid}" )
104+ .template ("{/project*}/-/ merge_requests/{iid}" )
105105 .build ();
106106 }
107107
108108 public static UriTemplate tagUriTemplate (String serverNameOrUrl ) {
109109 return getUriTemplateFromServer (serverNameOrUrl )
110- .template ("{/project*}/tree/{tag*}" )
110+ .template ("{/project*}/-/ tree/{tag*}" )
111111 .build ();
112112 }
113113
114114 public static UriTemplate commitUriTemplate (String serverNameOrUrl ) {
115115 return getUriTemplateFromServer (serverNameOrUrl )
116- .template ("{/project*}/commit/{hash}" )
116+ .template ("{/project*}/-/ commit/{hash}" )
117117 .build ();
118118 }
119119
You can’t perform that action at this time.
0 commit comments