1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-26 18:58:21 +02:00
joplin/CliClient/app/command-mkbook.js

24 lines
560 B
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
const { _ } = require('lib/locale.js');
2017-12-14 18:12:14 +00:00
const Folder = require('lib/models/Folder.js');
const { reg } = require('lib/registry.js');
2017-07-10 20:03:46 +00:00
class Command extends BaseCommand {
usage() {
2017-08-04 18:02:43 +02:00
return 'mkbook <new-notebook>';
2017-07-10 20:03:46 +00:00
}
description() {
2017-07-18 18:21:03 +00:00
return _('Creates a new notebook.');
2017-07-10 20:03:46 +00:00
}
2017-07-15 16:35:40 +01:00
async action(args) {
2017-08-04 18:02:43 +02:00
let folder = await Folder.save({ title: args['new-notebook'] }, { userSideValidation: true });
2017-07-10 20:03:46 +00:00
app().switchCurrentFolder(folder);
}
}
module.exports = Command;