0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Reduce number of notifications retrieved in admin-x-activtypub (#21928)

no refs

`250` takes a bit too long on the server so reducing it down to `120`
for now
This commit is contained in:
Michael Barrett 2024-12-19 15:28:15 +00:00 committed by GitHub
parent e08959a1b5
commit 1e9d09951e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "@tryghost/admin-x-activitypub", "name": "@tryghost/admin-x-activitypub",
"version": "0.3.41", "version": "0.3.42",
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",

View file

@ -185,7 +185,7 @@ const Activities: React.FC<ActivitiesProps> = ({}) => {
filter: { filter: {
type: ['Follow', 'Like', `Create:Note`] type: ['Follow', 'Like', `Create:Note`]
}, },
limit: 250, limit: 120,
key: GET_ACTIVITIES_QUERY_KEY_NOTIFICATIONS key: GET_ACTIVITIES_QUERY_KEY_NOTIFICATIONS
}); });