Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2017-03-02 20:29:39 +0000
committerRyan D. Brooks2017-03-02 20:29:39 +0000
commitd256663f65a03466a88a597dd54d987bcea9c452 (patch)
tree8b7697dba2506a7008a7a155ef4bbbf6a61998a7
parentc45f7f27b5fe846b7373713bfe111698959e161c (diff)
downloadorg.eclipse.osee-d256663f65a03466a88a597dd54d987bcea9c452.tar.gz
org.eclipse.osee-d256663f65a03466a88a597dd54d987bcea9c452.tar.xz
org.eclipse.osee-d256663f65a03466a88a597dd54d987bcea9c452.zip
bug: Allow set branch name to handle special characters0.24.4.v201703031714-REL
-rw-r--r--plugins/org.eclipse.osee.orcs.rest.model/src/org/eclipse/osee/orcs/rest/model/BranchEndpoint.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.orcs.rest.model/src/org/eclipse/osee/orcs/rest/model/BranchEndpoint.java b/plugins/org.eclipse.osee.orcs.rest.model/src/org/eclipse/osee/orcs/rest/model/BranchEndpoint.java
index 20feb16b44d..b43f0f61124 100644
--- a/plugins/org.eclipse.osee.orcs.rest.model/src/org/eclipse/osee/orcs/rest/model/BranchEndpoint.java
+++ b/plugins/org.eclipse.osee.orcs.rest.model/src/org/eclipse/osee/orcs/rest/model/BranchEndpoint.java
@@ -142,8 +142,8 @@ public interface BranchEndpoint {
Response deleteBranchExchange(@QueryParam("path") String path);
@PUT
- @Path("{branch-uuid}/name/{branch-name}")
- Response setBranchName(@PathParam("branch-uuid") long branchUuid, @PathParam("branch-name") String newName);
+ @Path("{branch-uuid}/name")
+ Response setBranchName(@PathParam("branch-uuid") long branchUuid, String newName);
@PUT
@Path("{branch-uuid}/type/{branch-type}")
@@ -186,4 +186,4 @@ public interface BranchEndpoint {
@PUT
@Path("log/{comment}")
Response logBranchActivity(@PathParam("comment") String comment);
-} \ No newline at end of file
+}

Back to the top