From 093cf2ab12a1f6bfa9629917101afffd2aeb8376 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 10 Apr 2023 21:56:02 +0200 Subject: [feature] Receive notification when followed account posts (if desired) (#1680) * start working on notifs for new posts * tidy up a bit * update swagger * carry over show reblogs + notify from follow req * test notify on status post * update column slice * dedupe update logic + add tests * fix own boosts not being timelined * avoid type check, passing unnecessary accounts * remove unnecessary 'inReplyToID' check * add a couple todo's for future db functions --- internal/api/client/accounts/follow.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'internal/api/client/accounts') diff --git a/internal/api/client/accounts/follow.go b/internal/api/client/accounts/follow.go index 078e48b97..260f647cc 100644 --- a/internal/api/client/accounts/follow.go +++ b/internal/api/client/accounts/follow.go @@ -35,6 +35,9 @@ import ( // The parameters can also be given in the body of the request, as JSON, if the content-type is set to 'application/json'. // The parameters can also be given in the body of the request, as XML, if the content-type is set to 'application/xml'. // +// If you already follow (request) the given account, then the follow (request) will be updated instead using the +// `reblogs` and `notify` parameters. +// // --- // tags: // - accounts @@ -58,11 +61,11 @@ import ( // description: Show reblogs from this account. // in: formData // - +// name: notify +// type: boolean // default: false // description: Notify when this account posts. // in: formData -// name: notify -// type: boolean // // produces: // - application/json -- cgit v1.2.3