diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-02-18 09:29:59 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-02-18 09:29:59 +0100 |
commit | ad4a8a1cca1049f600ebcdce9260c1021cd821a5 (patch) | |
tree | ca8ffba899b024d56d1bd7846f61aecae0821c82 /server/initializers/installer.js | |
parent | 5d67f289df4a68e35ad7e0af3c601c7db0dc7586 (diff) | |
download | PeerTube-ad4a8a1cca1049f600ebcdce9260c1021cd821a5.tar.gz PeerTube-ad4a8a1cca1049f600ebcdce9260c1021cd821a5.tar.zst PeerTube-ad4a8a1cca1049f600ebcdce9260c1021cd821a5.zip |
Add email to users
Diffstat (limited to 'server/initializers/installer.js')
-rw-r--r-- | server/initializers/installer.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/initializers/installer.js b/server/initializers/installer.js index fb63b81ac..837a987dd 100644 --- a/server/initializers/installer.js +++ b/server/initializers/installer.js | |||
@@ -96,6 +96,7 @@ function createOAuthAdminIfNotExist (callback) { | |||
96 | 96 | ||
97 | const username = 'root' | 97 | const username = 'root' |
98 | const role = constants.USER_ROLES.ADMIN | 98 | const role = constants.USER_ROLES.ADMIN |
99 | const email = constants.CONFIG.ADMIN.EMAIL | ||
99 | const createOptions = {} | 100 | const createOptions = {} |
100 | let password = '' | 101 | let password = '' |
101 | 102 | ||
@@ -115,6 +116,7 @@ function createOAuthAdminIfNotExist (callback) { | |||
115 | 116 | ||
116 | const userData = { | 117 | const userData = { |
117 | username, | 118 | username, |
119 | email, | ||
118 | password, | 120 | password, |
119 | role | 121 | role |
120 | } | 122 | } |