mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
missing file
This commit is contained in:
parent
8e96aa02df
commit
0c029dc768
16
backend/src/graphql/inputs/LoginUserInput.ts
Normal file
16
backend/src/graphql/inputs/LoginUserInput.ts
Normal 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
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user