mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
21 lines
404 B
JavaScript
21 lines
404 B
JavaScript
const BaseCommand = require('./base-command').default;
|
|
const { _ } = require('@joplin/lib/locale');
|
|
|
|
const CommandDone = require('./command-done.js');
|
|
|
|
class Command extends BaseCommand {
|
|
usage() {
|
|
return 'undone <note>';
|
|
}
|
|
|
|
description() {
|
|
return _('Marks a to-do as non-completed.');
|
|
}
|
|
|
|
async action(args) {
|
|
await CommandDone.handleAction(this, args, false);
|
|
}
|
|
}
|
|
|
|
module.exports = Command;
|