Track client and server sources
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { IsOptional, IsString } from 'class-validator'
|
||||
|
||||
export class CreateInviteLinkDto {
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
channelId?: string
|
||||
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
groupId?: string
|
||||
|
||||
@IsOptional()
|
||||
maxUses?: number
|
||||
|
||||
@IsOptional()
|
||||
expiresInSeconds?: number
|
||||
}
|
||||
Reference in New Issue
Block a user