- rename set and get configxml api
This commit is contained in:
parent
a70d56ff56
commit
02c6121a6c
@ -15,7 +15,7 @@ package org.bigbluebutton.core.managers
|
|||||||
import org.bigbluebutton.core.model.Config;
|
import org.bigbluebutton.core.model.Config;
|
||||||
|
|
||||||
public class ConfigManager2 extends EventDispatcher {
|
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;
|
private var _config:Config = null;
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ package org.bigbluebutton.main.model
|
|||||||
import org.bigbluebutton.main.model.modules.ModuleDescriptor;
|
import org.bigbluebutton.main.model.modules.ModuleDescriptor;
|
||||||
|
|
||||||
public class ConfigParameters {
|
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;
|
private var _urlLoader:URLLoader;
|
||||||
|
|
||||||
|
@ -150,16 +150,6 @@ class ApiController {
|
|||||||
|
|
||||||
Meeting newMeeting = paramsProcessorUtil.processCreateParams(params);
|
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);
|
meetingService.createMeeting(newMeeting);
|
||||||
|
|
||||||
// See if the request came with pre-uploading of presentation.
|
// See if the request came with pre-uploading of presentation.
|
||||||
@ -760,7 +750,7 @@ class ApiController {
|
|||||||
/***********************************************
|
/***********************************************
|
||||||
* CONFIG API
|
* CONFIG API
|
||||||
***********************************************/
|
***********************************************/
|
||||||
def configXml = {
|
def setConfigXML = {
|
||||||
|
|
||||||
if (StringUtils.isEmpty(params.checksum)) {
|
if (StringUtils.isEmpty(params.checksum)) {
|
||||||
invalid("checksumError", "You did not pass the checksum security check")
|
invalid("checksumError", "You did not pass the checksum security check")
|
||||||
@ -831,7 +821,7 @@ class ApiController {
|
|||||||
/***********************************************
|
/***********************************************
|
||||||
* CONFIG API
|
* CONFIG API
|
||||||
***********************************************/
|
***********************************************/
|
||||||
def configXML = {
|
def getConfigXML = {
|
||||||
|
|
||||||
if (! session["user-token"] || (meetingService.getUserSession(session['user-token']) == null)) {
|
if (! session["user-token"] || (meetingService.getUserSession(session['user-token']) == null)) {
|
||||||
log.info("No session for user in conference.")
|
log.info("No session for user in conference.")
|
||||||
|
Loading…
Reference in New Issue
Block a user