forked from Yara724/api
FIX Catcha
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import { ApiProperty } from "@nestjs/swagger";
|
||||
|
||||
export class CaptchaResponseDto {
|
||||
@ApiProperty({
|
||||
description: "Captcha challenge id — send back with POST /actor/login.",
|
||||
example: "f47ac10b-58cc-4372-a567-0e02b2c3d479",
|
||||
})
|
||||
captchaId: string;
|
||||
|
||||
@ApiProperty({
|
||||
description:
|
||||
"SVG captcha as a data URI — use as `<img src={image} />` in the frontend. " +
|
||||
"Swagger shows this as text only; paste the full string into a browser tab, " +
|
||||
"or call GET /actor/captcha?format=raw to view the image directly.",
|
||||
"SVG captcha as a data URI — use as `<img src={image} />` in the frontend.",
|
||||
example: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iLi4u",
|
||||
})
|
||||
image: string;
|
||||
|
||||
Reference in New Issue
Block a user