* feat: wip rewrite auth * feat: restructure folders and fix stories and tests * feat: remove auth provider and fix tests
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import { ArgsType, Field } from '@nestjs/graphql';
|
|
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
@ArgsType()
|
|
export class VerifyInput {
|
|
@Field(() => String)
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
loginToken: string;
|
|
}
|