mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
import { IsString, IsUUID } from 'class-validator'
|
|
import { ArgsType, Field, InputType } from 'type-graphql'
|
|
|
|
@ArgsType()
|
|
@InputType()
|
|
export class EditCommunityInput {
|
|
@Field(() => String)
|
|
@IsUUID('4')
|
|
uuid: string
|
|
|
|
@Field(() => String)
|
|
@IsString()
|
|
gmsApiKey: string
|
|
}
|