28 lines
841 B
JavaScript
28 lines
841 B
JavaScript
const $ = CTFd.lib.$;
|
|
|
|
$(".config-section > form:not(.form-upload)").submit(async function (event) {
|
|
event.preventDefault();
|
|
const obj = $(this).serializeJSON();
|
|
const params = {};
|
|
for (let x in obj) {
|
|
if (obj[x] === "true") {
|
|
params[x] = true;
|
|
} else if (obj[x] === "false") {
|
|
params[x] = false;
|
|
} else {
|
|
params[x] = obj[x];
|
|
}
|
|
}
|
|
params['whale:refresh'] = btoa(+new Date).slice(-7, -2);
|
|
|
|
await CTFd.api.patch_config_list({}, params);
|
|
location.reload();
|
|
});
|
|
$(".config-section > form:not(.form-upload) > div > div > div > #router-type").change(async function () {
|
|
await CTFd.api.patch_config_list({}, {
|
|
'whale:router_type': $(this).val(),
|
|
'whale:refresh': btoa(+new Date).slice(-7, -2),
|
|
});
|
|
location.reload();
|
|
});
|