Skip to content
Snippets Groups Projects
Commit fd0d4dae authored by srosse's avatar srosse
Browse files

OO-4103: fix wrong node parameter

parent 12eaf5b8
No related branches found
No related tags found
No related merge requests found
/** /**
* <a href="http://www.openolat.org"> * <a href="http://www.openolat.org">
* OpenOLAT - Online Learning and Training</a><br> * OpenOLAT - Online Learning and Training</a><br>
* <p> * <p>
...@@ -1218,7 +1219,7 @@ public class CourseElementWebService extends AbstractCourseNodeWebService { ...@@ -1218,7 +1219,7 @@ public class CourseElementWebService extends AbstractCourseNodeWebService {
@Consumes(MediaType.APPLICATION_FORM_URLENCODED) @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON}) @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
//fxdiff FXOLAT-122: course management //fxdiff FXOLAT-122: course management
public Response updateExternalPage(@PathParam("courseId") Long courseId, @PathParam("parentNodeId") String nodeId, public Response updateExternalPage(@PathParam("courseId") Long courseId, @PathParam("nodeId") String nodeId,
@FormParam("shortTitle") @DefaultValue("undefined") String shortTitle, @FormParam("shortTitle") @DefaultValue("undefined") String shortTitle,
@FormParam("longTitle") @DefaultValue("undefined") String longTitle, @FormParam("objectives") @DefaultValue("undefined") String objectives, @FormParam("longTitle") @DefaultValue("undefined") String longTitle, @FormParam("objectives") @DefaultValue("undefined") String objectives,
@FormParam("visibilityExpertRules") String visibilityExpertRules, @FormParam("accessExpertRules") String accessExpertRules, @FormParam("visibilityExpertRules") String visibilityExpertRules, @FormParam("accessExpertRules") String accessExpertRules,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment