From 64694de343737360e797a92a0a6c0e88695facda Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sun, 20 Sep 2020 22:52:50 -0500 Subject: Monsterfork v1-style curated Federated timeline --- app/controllers/api/v1/statuses/bookmarks_controller.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'app/controllers/api/v1') diff --git a/app/controllers/api/v1/statuses/bookmarks_controller.rb b/app/controllers/api/v1/statuses/bookmarks_controller.rb index 19963c002..1bf698a78 100644 --- a/app/controllers/api/v1/statuses/bookmarks_controller.rb +++ b/app/controllers/api/v1/statuses/bookmarks_controller.rb @@ -9,6 +9,7 @@ class Api::V1::Statuses::BookmarksController < Api::BaseController def create current_account.bookmarks.find_or_create_by!(account: current_account, status: @status) + curate! unless @status.curated? || !@status.published? render json: @status, serializer: REST::StatusSerializer end @@ -37,4 +38,9 @@ class Api::V1::Statuses::BookmarksController < Api::BaseController rescue Mastodon::NotPermittedError not_found end + + def curate! + @status.curate! + DistributionWorker.perform_async(@status.id) + end end -- cgit