Fix(backend): replyIdの型定義がミスっているのを修正

This commit is contained in:
taichan 2025-01-20 03:32:30 +09:00 committed by GitHub
parent aff8a05dc5
commit 232cd62895
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export class MiNoteDraft {
nullable: true, nullable: true,
comment: 'The ID of reply target.', comment: 'The ID of reply target.',
}) })
public replyId: MiNoteDraft['id'] | null; public replyId: MiNote['id'] | null;
@ManyToOne(type => MiNote, { @ManyToOne(type => MiNote, {
onDelete: 'CASCADE', onDelete: 'CASCADE',