diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-09-04 20:07:54 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-09-04 20:07:54 +0200 |
commit | b0f9f39ed70299a208d1b388c72de8b7f3510cb7 (patch) | |
tree | 4b7d388125265533ac2f6d4bf457d018617e1db6 /server/initializers/installer.ts | |
parent | e7dbeae8d915cdf4470ceb51c2724b04148b30b5 (diff) | |
download | PeerTube-b0f9f39ed70299a208d1b388c72de8b7f3510cb7.tar.gz PeerTube-b0f9f39ed70299a208d1b388c72de8b7f3510cb7.tar.zst PeerTube-b0f9f39ed70299a208d1b388c72de8b7f3510cb7.zip |
Begin user quota
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 => { |