aboutsummaryrefslogtreecommitdiff
path: root/cli.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli.js')
-rwxr-xr-xcli.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/cli.js b/cli.js
index b802095..0952f3d 100755
--- a/cli.js
+++ b/cli.js
@@ -39,6 +39,12 @@ if ((idx = params.indexOf("-r")) > -1) {
.then(() => process.exit(0))
.catch(console.error);
break;
+ case "questions":
+ db.resetQuestions()
+ .then(() => console.info("Resetted questions!"))
+ .then(() => process.exit(0))
+ .catch(console.error);
+ break;
default:
console.info("Nothing to do!");
process.exit(0);
@@ -57,6 +63,8 @@ if ((idx = params.indexOf("-r")) > -1) {
.then(() => console.info("Updating polls!"))
.then(() => db.initProfiles())
.then(() => console.info("Updating profile!"))
+ .then(() => db.initQuestions())
+ .then(() => console.info("Updating Quotes"))
.then(() => process.exit(0))
.catch(console.error);
@@ -79,6 +87,12 @@ if ((idx = params.indexOf("-r")) > -1) {
.then(() => process.exit(0))
.catch(console.error);
break;
+ case "questions":
+ db.initQuestions()
+ .then(() => console.info("Updating questions!"))
+ .then(() => process.exit(0))
+ .catch(console.error);
+ break;
default:
console.info("Nothing to do!");
process.exit(0);