mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
34 lines
960 B
JavaScript
34 lines
960 B
JavaScript
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.5.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
App.Http.GeneralSettings = (function () {
|
|
/**
|
|
* Save general settings.
|
|
*
|
|
* @param {Object} generalSettings
|
|
*
|
|
* @return {Object}
|
|
*/
|
|
function save(generalSettings) {
|
|
const url = App.Utils.Url.siteUrl('general_settings/save');
|
|
|
|
const data = {
|
|
csrf_token: App.Vars.csrf_token,
|
|
general_settings: generalSettings
|
|
};
|
|
|
|
return $.post(url, data);
|
|
}
|
|
|
|
return {
|
|
save
|
|
};
|
|
})();
|