mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
27 lines
525 B
JavaScript
27 lines
525 B
JavaScript
|
import { BaseCommand } from './base-command.js';
|
||
|
import { app } from './app.js';
|
||
|
import { _ } from 'lib/locale.js';
|
||
|
import { Folder } from 'lib/models/folder.js';
|
||
|
|
||
|
class Command extends BaseCommand {
|
||
|
|
||
|
usage() {
|
||
|
return 'mkbook <notebook>';
|
||
|
}
|
||
|
|
||
|
description() {
|
||
|
return 'Creates a new notebook.';
|
||
|
}
|
||
|
|
||
|
aliases() {
|
||
|
return ['mkdir'];
|
||
|
}
|
||
|
|
||
|
async action(args, end) {
|
||
|
let folder = await Folder.save({ title: args['notebook'] }, { duplicateCheck: true });
|
||
|
app().switchCurrentFolder(folder);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = Command;
|