mirror of
https://github.com/zadam/trilium.git
synced 2025-12-06 07:24:25 +01:00
25 lines
653 B
JavaScript
25 lines
653 B
JavaScript
import { t } from './i18n.js';
|
|
import server from './server.js';
|
|
import toastService from "./toast.js";
|
|
|
|
async function syncNow(ignoreNotConfigured = false) {
|
|
const result = await server.post('sync/now');
|
|
|
|
if (result.success) {
|
|
toastService.showMessage(t("sync.finished-successfully"));
|
|
}
|
|
else {
|
|
if (result.message.length > 200) {
|
|
result.message = `${result.message.substr(0, 200)}...`;
|
|
}
|
|
|
|
if (!ignoreNotConfigured || result.errorCode !== 'NOT_CONFIGURED') {
|
|
toastService.showError(t("sync.failed", { message: result.message }));
|
|
}
|
|
}
|
|
}
|
|
|
|
export default {
|
|
syncNow
|
|
};
|