Fix users tests
This commit is contained in:
parent
d10538b47d
commit
1e904cde34
|
@ -87,8 +87,8 @@ import:
|
|||
http:
|
||||
enabled: true
|
||||
proxy:
|
||||
enabled: true
|
||||
url: "http://188.165.225.149:7899"
|
||||
enabled: false
|
||||
url: ""
|
||||
torrent:
|
||||
enabled: true
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@ async function createUser (req: express.Request, res: express.Response) {
|
|||
|
||||
Hooks.runAction('action:api.user.created', { body, user, account, videoChannel })
|
||||
|
||||
return res.status(201).json({
|
||||
return res.json({
|
||||
user: {
|
||||
id: user.id,
|
||||
account: {
|
||||
|
|
|
@ -29,7 +29,7 @@ function createUser (parameters: CreateUserArgs) {
|
|||
videoQuota = 1000000,
|
||||
videoQuotaDaily = -1,
|
||||
role = UserRole.USER,
|
||||
specialStatus = 201
|
||||
specialStatus = 200
|
||||
} = parameters
|
||||
|
||||
const path = '/api/v1/users'
|
||||
|
|
|
@ -484,7 +484,7 @@ paths:
|
|||
tags:
|
||||
- Users
|
||||
responses:
|
||||
'201':
|
||||
'200':
|
||||
description: user created
|
||||
content:
|
||||
application/json:
|
||||
|
|
Loading…
Reference in New Issue