From aff777343055b5b15fb757fda22912dc0fcd2c87 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Mon, 21 May 2018 20:21:52 +0200 Subject: [Privacy, Port: glitch-soc@71b1d4c] Backend changes to allow handling local-only toots not based on emoji Co-authored-by: Fire Demon --- app/controllers/api/v1/statuses_controller.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/controllers') diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb index cbd232a50..ca40fac0a 100644 --- a/app/controllers/api/v1/statuses_controller.rb +++ b/app/controllers/api/v1/statuses_controller.rb @@ -46,6 +46,7 @@ class Api::V1::StatusesController < Api::BaseController notify: status_params[:notify], publish: status_params[:publish], visibility: status_params[:visibility], + local_only: status_params[:local_only], scheduled_at: status_params[:scheduled_at], application: doorkeeper_token.application, poll: status_params[:poll], @@ -77,6 +78,7 @@ class Api::V1::StatusesController < Api::BaseController notify: status_params[:notify], publish: status_params[:publish], visibility: status_params[:visibility], + local_only: status_params[:local_only], scheduled_at: status_params[:scheduled_at], application: doorkeeper_token.application, poll: status_params[:poll], @@ -145,6 +147,7 @@ class Api::V1::StatusesController < Api::BaseController :notify, :publish, :visibility, + :local_only, :scheduled_at, :content_type, :expires_at, -- cgit