diff options
Diffstat (limited to 'server/controllers/api/users.ts')
-rw-r--r-- | server/controllers/api/users.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/controllers/api/users.ts b/server/controllers/api/users.ts index bacfc4552..9ec6feb57 100644 --- a/server/controllers/api/users.ts +++ b/server/controllers/api/users.ts | |||
@@ -28,7 +28,7 @@ import { | |||
28 | UserRole, | 28 | UserRole, |
29 | UserRight | 29 | UserRight |
30 | } from '../../../shared' | 30 | } from '../../../shared' |
31 | import { createUserAuthorAndChannel } from '../../lib' | 31 | import { createUserAccountAndChannel } from '../../lib' |
32 | import { UserInstance } from '../../models' | 32 | import { UserInstance } from '../../models' |
33 | import { videosSortValidator } from '../../middlewares/validators/sort' | 33 | import { videosSortValidator } from '../../middlewares/validators/sort' |
34 | import { setVideosSort } from '../../middlewares/sort' | 34 | import { setVideosSort } from '../../middlewares/sort' |
@@ -142,9 +142,9 @@ async function createUser (req: express.Request, res: express.Response, next: ex | |||
142 | videoQuota: body.videoQuota | 142 | videoQuota: body.videoQuota |
143 | }) | 143 | }) |
144 | 144 | ||
145 | await createUserAuthorAndChannel(user) | 145 | await createUserAccountAndChannel(user) |
146 | 146 | ||
147 | logger.info('User %s with its channel and author created.', body.username) | 147 | logger.info('User %s with its channel and account created.', body.username) |
148 | } | 148 | } |
149 | 149 | ||
150 | async function registerUser (req: express.Request, res: express.Response, next: express.NextFunction) { | 150 | async function registerUser (req: express.Request, res: express.Response, next: express.NextFunction) { |
@@ -159,7 +159,7 @@ async function registerUser (req: express.Request, res: express.Response, next: | |||
159 | videoQuota: CONFIG.USER.VIDEO_QUOTA | 159 | videoQuota: CONFIG.USER.VIDEO_QUOTA |
160 | }) | 160 | }) |
161 | 161 | ||
162 | await createUserAuthorAndChannel(user) | 162 | await createUserAccountAndChannel(user) |
163 | return res.type('json').status(204).end() | 163 | return res.type('json').status(204).end() |
164 | } | 164 | } |
165 | 165 | ||