1
0
Fork 0

Make channelName optionnal only for the API

This commit is contained in:
kimsible 2020-07-29 18:35:17 +02:00 committed by Chocobozzz
parent 4e68fc8605
commit 69db147043
2 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ async function createUser (req: express.Request, res: express.Response) {
const { user, account, videoChannel } = await createUserAccountAndChannelAndPlaylist({
userToCreate,
channelNames: { name: body.channelName, displayName: body.channelName }
channelNames: body.channelName && { name: body.channelName, displayName: body.channelName }
})
auditLogger.create(getAuditIdFromRes(res), new UserAuditView(user.toFormattedJSON()))

View File

@ -9,5 +9,5 @@ export interface UserCreate {
videoQuotaDaily: number
role: UserRole
adminFlags?: UserAdminFlag
channelName: string
channelName?: string
}