cleaned graphql checkUsername Args

This commit is contained in:
Ulf Gebhardt 2021-10-22 02:44:40 +02:00
parent af2a77c30f
commit d1ae8a9537
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -4,7 +4,4 @@ import { ArgsType, Field } from 'type-graphql'
export default class CheckUsernameArgs {
@Field(() => String)
username: string
@Field(() => Number, { nullable: true })
groupId?: number
}