1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/CliClient/app/command-mkbook.js

31 lines
558 B
JavaScript
Raw Normal View History

2017-07-10 22:03:46 +02:00
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'];
}
2017-07-15 17:35:40 +02:00
async action(args) {
let folder = await Folder.save({ title: args['notebook'] }, {
duplicateCheck: true,
reservedTitleCheck: true,
});
2017-07-10 22:03:46 +02:00
app().switchCurrentFolder(folder);
}
}
module.exports = Command;