aboutsummaryrefslogtreecommitdiff
path: root/src/services/api/api.service.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2020-02-10 14:51:35 +0000
committerShpuld Shpludson <shp@cock.li>2020-02-10 14:51:35 +0000
commit17b6d8ddb8a9a1637fd88e017170b973b97381da (patch)
tree195d8c95342696e753f0c11bec73f049fbbcdf9b /src/services/api/api.service.js
parent6be6241767f13d5a46f2c5455281a03ae2a5e844 (diff)
parentce68ef0138f43fed6617f197d46cc09ac68f9e31 (diff)
Merge branch 'move-type-notification' into 'develop'
Add setting for allow following move Closes #732 See merge request pleroma/pleroma-fe!1054
Diffstat (limited to 'src/services/api/api.service.js')
-rw-r--r--src/services/api/api.service.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js
index 11aa0675..b794fd58 100644
--- a/src/services/api/api.service.js
+++ b/src/services/api/api.service.js
@@ -495,7 +495,8 @@ const fetchTimeline = ({
until = false,
userId = false,
tag = false,
- withMuted = false
+ withMuted = false,
+ withMove = false
}) => {
const timelineUrls = {
public: MASTODON_PUBLIC_TIMELINE,
@@ -535,6 +536,9 @@ const fetchTimeline = ({
if (timeline === 'public' || timeline === 'publicAndExternal') {
params.push(['only_media', false])
}
+ if (timeline === 'notifications') {
+ params.push(['with_move', withMove])
+ }
params.push(['count', 20])
params.push(['with_muted', withMuted])