1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/app-desktop/gui/MainScreen/commands/openFolder.ts

17 lines
390 B
TypeScript
Raw Normal View History

import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
export const declaration: CommandDeclaration = {
name: 'openFolder',
};
export const runtime = (): CommandRuntime => {
return {
execute: async (context: CommandContext, folderId: string) => {
context.dispatch({
type: 'FOLDER_SELECT',
id: folderId,
});
},
};
};