easyappointments/assets/js/http/account_http_client.js

61 lines
1.4 KiB
JavaScript
Raw Permalink Normal View History

/* ----------------------------------------------------------------------------
2022-01-18 15:05:42 +03:00
* Easy!Appointments - Online Appointment 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
* ---------------------------------------------------------------------------- */
/**
* Account HTTP client.
*
* This module implements the account related HTTP requests.
*/
App.Http.Account = (function () {
/**
* Save account.
*
* @param {Object} account
*
* @return {Object}
*/
function save(account) {
const url = App.Utils.Url.siteUrl('account/save');
const data = {
csrf_token: vars('csrf_token'),
account,
};
return $.post(url, data);
}
/**
* Validate username.
*
* @param {Number} userId
* @param {String} username
*
* @return {Object}
*/
function validateUsername(userId, username) {
const url = App.Utils.Url.siteUrl('account/validate_username');
const data = {
csrf_token: vars('csrf_token'),
user_id: userId,
username,
};
return $.post(url, data);
}
return {
save,
validateUsername,
};
})();