mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 13:59:23 +00:00
Perform a request over the server to get account settings
This commit is contained in:
parent
3f4b2ea290
commit
b932a12faa
@ -6,6 +6,18 @@
|
|||||||
|
|
||||||
ComunicWeb.components.settings.interface = {
|
ComunicWeb.components.settings.interface = {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get general account settings
|
||||||
|
*
|
||||||
|
* @param {function} callback
|
||||||
|
*/
|
||||||
|
getGeneral: function(callback){
|
||||||
|
|
||||||
|
//Make a request over the API
|
||||||
|
var apiURI = "/settings/get_general/";
|
||||||
|
var params = {};
|
||||||
|
ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback);
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
@ -31,6 +31,21 @@ ComunicWeb.pages.settings.sections.general = {
|
|||||||
//Display loading message
|
//Display loading message
|
||||||
var loadingMsg = ComunicWeb.common.messages.createCalloutElem("Loading", "Please wait while this page is loading...", "info");
|
var loadingMsg = ComunicWeb.common.messages.createCalloutElem("Loading", "Please wait while this page is loading...", "info");
|
||||||
boxBody.appendChild(loadingMsg);
|
boxBody.appendChild(loadingMsg);
|
||||||
|
|
||||||
|
//Load general settings information
|
||||||
|
ComunicWeb.components.settings.interface.getGeneral(function(infos){
|
||||||
|
|
||||||
|
//Remove loading message
|
||||||
|
loadingMsg.remove();
|
||||||
|
|
||||||
|
//Check for errors
|
||||||
|
if(infos.error){
|
||||||
|
var errMsg = ComunicWeb.common.messages.createCalloutElem("Error", "An error occured while retrieving account settings...", "danger");
|
||||||
|
boxBody.appendChild(errMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user