- rename set and get configxml api

This commit is contained in:
Richard Alam 2012-12-09 20:44:52 +00:00
parent a70d56ff56
commit 02c6121a6c
3 changed files with 5 additions and 15 deletions

View File

@ -15,7 +15,7 @@ package org.bigbluebutton.core.managers
import org.bigbluebutton.core.model.Config;
public class ConfigManager2 extends EventDispatcher {
public static const CONFIG_XML:String = "bigbluebutton/api/configXML";
public static const CONFIG_XML:String = "bigbluebutton/api/getConfigXML";
private var _config:Config = null;

View File

@ -35,7 +35,7 @@ package org.bigbluebutton.main.model
import org.bigbluebutton.main.model.modules.ModuleDescriptor;
public class ConfigParameters {
public static const CONFIG_XML:String = "bigbluebutton/api/configXML";
public static const CONFIG_XML:String = "bigbluebutton/api/getConfigXML";
private var _urlLoader:URLLoader;

View File

@ -149,17 +149,7 @@ class ApiController {
}
Meeting newMeeting = paramsProcessorUtil.processCreateParams(params);
if (! StringUtils.isEmpty(params.configToken)) {
Config conf = meetingService.getConfig(params.configToken);
if (conf == null) {
errors.noConfigFoundForToken(params.configToken);
respondWithErrors(errors);
} else {
newMeeting.setDefaultConfig(conf.config);
}
}
meetingService.createMeeting(newMeeting);
// See if the request came with pre-uploading of presentation.
@ -760,7 +750,7 @@ class ApiController {
/***********************************************
* CONFIG API
***********************************************/
def configXml = {
def setConfigXML = {
if (StringUtils.isEmpty(params.checksum)) {
invalid("checksumError", "You did not pass the checksum security check")
@ -831,7 +821,7 @@ class ApiController {
/***********************************************
* CONFIG API
***********************************************/
def configXML = {
def getConfigXML = {
if (! session["user-token"] || (meetingService.getUserSession(session['user-token']) == null)) {
log.info("No session for user in conference.")