mirror of
https://github.com/hexastack/hexabot
synced 2025-01-22 10:35:37 +00:00
fix: apply feedbacsk
This commit is contained in:
parent
efc3ebb9b6
commit
43f92b7774
@ -46,7 +46,7 @@ export class ConversationCreateDto {
|
||||
@IsObjectId({
|
||||
message: 'Current must be a valid objectId',
|
||||
})
|
||||
current?: string;
|
||||
current?: string | null;
|
||||
|
||||
@ApiProperty({ description: 'next conversation', type: Array })
|
||||
@IsOptional()
|
||||
|
@ -80,8 +80,8 @@ export class Conversation extends ConversationStub {
|
||||
@Transform(({ obj }) => obj.sender.toString())
|
||||
sender: string;
|
||||
|
||||
@Transform(({ obj }) => obj.current.toString())
|
||||
current: string;
|
||||
@Transform(({ obj }) => (obj.current ? obj.current.toString() : null))
|
||||
current: string | null;
|
||||
|
||||
@Transform(({ obj }) => obj.next.map((elem) => elem.toString()))
|
||||
next: string[];
|
||||
|
Loading…
Reference in New Issue
Block a user