diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-10-31 15:30:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-31 15:30:22 +0900 |
| commit | fc65190ef7b687650018cccfee2219bf00827f70 (patch) | |
| tree | d2482c79dd095509b8b57dac28db460fb812196a /src/db | |
| parent | fix: Fix #7895 (#7937) (diff) | |
| download | sharkey-fc65190ef7b687650018cccfee2219bf00827f70.tar.gz sharkey-fc65190ef7b687650018cccfee2219bf00827f70.tar.bz2 sharkey-fc65190ef7b687650018cccfee2219bf00827f70.zip | |
feat: thread mute (#7930)
* feat: thread mute
* chore: fix comment
* fix test
* fix
* refactor
Diffstat (limited to 'src/db')
| -rw-r--r-- | src/db/postgre.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/db/postgre.ts b/src/db/postgre.ts index 4f4047b613..f52c2ab722 100644 --- a/src/db/postgre.ts +++ b/src/db/postgre.ts @@ -17,6 +17,7 @@ import { PollVote } from '@/models/entities/poll-vote'; import { Note } from '@/models/entities/note'; import { NoteReaction } from '@/models/entities/note-reaction'; import { NoteWatching } from '@/models/entities/note-watching'; +import { NoteThreadMuting } from '@/models/entities/note-thread-muting'; import { NoteUnread } from '@/models/entities/note-unread'; import { Notification } from '@/models/entities/notification'; import { Meta } from '@/models/entities/meta'; @@ -138,6 +139,7 @@ export const entities = [ NoteFavorite, NoteReaction, NoteWatching, + NoteThreadMuting, NoteUnread, Page, PageLike, |