* feat: wip refactor folder structure * Fix * fix position --------- Co-authored-by: Charles Bochet <charles@twenty.com>
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { ArgsType, Field } from '@nestjs/graphql';
|
|
|
|
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
@ArgsType()
|
|
export class RefreshTokenInput {
|
|
@Field(() => String)
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
refreshToken: string;
|
|
}
|