mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
21 lines
662 B
TypeScript
21 lines
662 B
TypeScript
import { _ } from '@joplin/lib/locale';
|
|
import Setting from '@joplin/lib/models/Setting';
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import restart from '../services/restart';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'toggleSafeMode',
|
|
label: () => _('Toggle safe mode'),
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (_context: CommandContext, enabled: boolean = null) => {
|
|
enabled = enabled !== null ? enabled : !Setting.value('isSafeMode');
|
|
Setting.setValue('isSafeMode', enabled);
|
|
await Setting.saveAll();
|
|
await restart();
|
|
},
|
|
};
|
|
};
|