missing file

This commit is contained in:
einhornimmond 2021-06-24 20:41:24 +02:00 committed by Ulf Gebhardt
parent 8e96aa02df
commit 0c029dc768
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -0,0 +1,16 @@
import { InputType, Field } from 'type-graphql'
@InputType()
export class LoginUserInput {
@Field({ nullable: true })
username?: string
@Field({ nullable: true })
email?: string
@Field({ nullable: true })
pubkey?: string
@Field()
password: string
}