mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 07:30:59 -07:00
wip
This commit is contained in:
parent
89c8d88b64
commit
dddc1f6624
2 changed files with 14 additions and 1 deletions
|
@ -77,7 +77,17 @@ module.exports = async (params, user, app) => {
|
||||||
channel_id: {
|
channel_id: {
|
||||||
$in: watchingChannelIds
|
$in: watchingChannelIds
|
||||||
}
|
}
|
||||||
}]
|
}],
|
||||||
|
// mute
|
||||||
|
user_id: {
|
||||||
|
$nin: mutes
|
||||||
|
},
|
||||||
|
'_reply.user_id': {
|
||||||
|
$nin: mutes
|
||||||
|
},
|
||||||
|
'_repost.user_id': {
|
||||||
|
$nin: mutes
|
||||||
|
},
|
||||||
} as any;
|
} as any;
|
||||||
|
|
||||||
if (sinceId) {
|
if (sinceId) {
|
||||||
|
|
3
src/api/models/mute.ts
Normal file
3
src/api/models/mute.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import db from '../../db/mongodb';
|
||||||
|
|
||||||
|
export default db.get('mute') as any; // fuck type definition
|
Loading…
Reference in a new issue