Merge branch 'develop' into user_management

because
This commit is contained in:
luce 2025-08-06 16:23:36 +02:00
commit eb3d75e6de
29 changed files with 637 additions and 497 deletions

View file

@ -352,7 +352,7 @@ const unmuteConversation = ({ id, credentials }) => {
const blockUser = ({ id, expiresIn, credentials }) => {
const payload = {}
if (expiresIn) {
payload.expires_in = expiresIn
payload.duration = expiresIn
}
return promisedRequest({

View file

@ -18,8 +18,7 @@ const mastoApiNotificationTypes = new Set([
'move',
'poll',
'pleroma:emoji_reaction',
'pleroma:report',
'test'
'pleroma:report'
])
const fetchAndUpdate = ({ store, credentials, older = false, since }) => {