fix(adapter/admin.js): Adding mnemonic for user

This commit is contained in:
Chris Troutner
2025-05-19 13:16:32 -07:00
parent 164a38ad20
commit ac326b8e34
+2 -1
View File
@@ -56,7 +56,8 @@ class Admin {
email: 'system@system.com',
name: 'admin',
password: _this.config.adminPassword || _this._randomString(20),
type: 'admin'
type: 'admin',
mnemonic: 'spread ivory oval pioneer flash gap merit nerve simple image entire trouble'
}
// Check if the user already exists
let adminUser = await _this.User.findOne({ email: context.email })