diff options
Diffstat (limited to 'server/initializers/installer.ts')
-rw-r--r-- | server/initializers/installer.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/server/initializers/installer.ts b/server/initializers/installer.ts index 43b5adfed..10b74b85f 100644 --- a/server/initializers/installer.ts +++ b/server/initializers/installer.ts | |||
@@ -38,12 +38,12 @@ function removeCacheDirectories () { | |||
38 | } | 38 | } |
39 | 39 | ||
40 | function createDirectoriesIfNotExist () { | 40 | function createDirectoriesIfNotExist () { |
41 | const storages = CONFIG.STORAGE | 41 | const storage = CONFIG.STORAGE |
42 | const cacheDirectories = CACHE.DIRECTORIES | 42 | const cacheDirectories = CACHE.DIRECTORIES |
43 | 43 | ||
44 | const tasks = [] | 44 | const tasks = [] |
45 | Object.keys(storages).forEach(key => { | 45 | Object.keys(storage).forEach(key => { |
46 | const dir = storages[key] | 46 | const dir = storage[key] |
47 | tasks.push(mkdirpPromise(dir)) | 47 | tasks.push(mkdirpPromise(dir)) |
48 | }) | 48 | }) |
49 | 49 | ||
@@ -112,7 +112,8 @@ function createOAuthAdminIfNotExist () { | |||
112 | username, | 112 | username, |
113 | email, | 113 | email, |
114 | password, | 114 | password, |
115 | role | 115 | role, |
116 | videoQuota: -1 | ||
116 | } | 117 | } |
117 | 118 | ||
118 | return db.User.create(userData, createOptions).then(createdUser => { | 119 | return db.User.create(userData, createOptions).then(createdUser => { |