aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/reset-password.ts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/reset-password.ts')
-rwxr-xr-xscripts/reset-password.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/reset-password.ts b/scripts/reset-password.ts
index a6863f807..6516edc28 100755
--- a/scripts/reset-password.ts
+++ b/scripts/reset-password.ts
@@ -1,5 +1,5 @@
1import * as program from 'commander' 1import * as program from 'commander'
2import { initDatabase } from '../server/initializers' 2import { initDatabaseModels } from '../server/initializers'
3import { UserModel } from '../server/models/account/user' 3import { UserModel } from '../server/models/account/user'
4 4
5program 5program
@@ -11,7 +11,7 @@ if (program['user'] === undefined) {
11 process.exit(-1) 11 process.exit(-1)
12} 12}
13 13
14initDatabase(true) 14initDatabaseModels(true)
15 .then(() => { 15 .then(() => {
16 return UserModel.loadByUsername(program['user']) 16 return UserModel.loadByUsername(program['user'])
17 }) 17 })