Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
joplin / usr / lib / joplin / resources / app / commands / toggleSafeMode.ts
Size: Mime:
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();
		},
	};
};