forked from FoundKeyGang/FoundKey
refactor(backend): fix type
This commit is contained in:
parent
928c51ba7b
commit
69e08abaef
1 changed files with 2 additions and 2 deletions
|
@ -67,7 +67,7 @@ router.get('/notes/:note', async (ctx, next) => {
|
|||
|
||||
const note = await Notes.findOne({
|
||||
id: ctx.params.note,
|
||||
visibility: In(['public', 'home']),
|
||||
visibility: In(['public' as const, 'home' as const]),
|
||||
localOnly: false,
|
||||
});
|
||||
|
||||
|
@ -96,7 +96,7 @@ router.get('/notes/:note/activity', async ctx => {
|
|||
const note = await Notes.findOne({
|
||||
id: ctx.params.note,
|
||||
userHost: null,
|
||||
visibility: In(['public', 'home']),
|
||||
visibility: In(['public' as const, 'home' as const]),
|
||||
localOnly: false,
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue