Skip to content

Commit 76f6ea3

Browse files
committed
fix: fix the git leak issue
1 parent d461aeb commit 76f6ea3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/discourse-verification/dto/generate-verification-token-response.dto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export class GenerateVerificationTokenResponseDto {
55
description:
66
'Generated verification JWT token to embed in a Discourse topic',
77
example:
8-
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb2RlIjoiMjMxMjQ... (truncated)',
8+
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6',
99
})
1010
verificationJwt: string;
1111
}

src/discourse-verification/dto/verify-response.dto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export class VerifyResponseDto {
55
description:
66
'Discourse JWT that can be used for authenticated actions on the Discourse instance',
77
example:
8-
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoxMjMsImJhc2VVUkwiOiJodHRwczovL2ZvcnVtcy5leGFtcGxlLmNvbSIsImlhdCI6MTY5MTMxMjAwMH0.x4dF-KO9drgBbLj197UQVHev4dgd0DcNEkN8bsuEPnY',
8+
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6',
99
})
1010
discourseJwt: string;
1111
}

src/discourse-verification/dto/verify.dto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class VerifyDto {
1515
@ApiProperty({
1616
description: 'The verification JWT.',
1717
example:
18-
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkxasewrOiIxMjM0NTY3ODkwIiwibmFtZSI6',
18+
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6',
1919
required: true,
2020
})
2121
@IsString()

0 commit comments

Comments
 (0)