diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-05-21 20:21:52 +0200 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:44:01 -0500 |
commit | b1249a6ef1c7ce479a646491805712b9573b8ce8 (patch) | |
tree | 0d81e96da7fba12e956a351194889feee09025a5 /app/controllers | |
parent | c752a46c457759149c14ae0e4d501d5ef2ce478a (diff) |
[Privacy, Port: glitch-soc@71b1d4c] Backend changes to allow handling local-only toots not based on emoji
Co-authored-by: Fire Demon <firedemon@creature.cafe>
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/statuses_controller.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb index 1437496be..b64bf3fa0 100644 --- a/app/controllers/api/v1/statuses_controller.rb +++ b/app/controllers/api/v1/statuses_controller.rb @@ -42,6 +42,7 @@ class Api::V1::StatusesController < Api::BaseController sensitive: status_params[:sensitive], spoiler_text: status_params[:spoiler_text], visibility: status_params[:visibility], + local_only: status_params[:local_only], scheduled_at: status_params[:scheduled_at], application: doorkeeper_token.application, poll: status_params[:poll], @@ -67,6 +68,7 @@ class Api::V1::StatusesController < Api::BaseController sensitive: status_params[:sensitive], spoiler_text: status_params[:spoiler_text], visibility: status_params[:visibility], + local_only: status_params[:local_only], scheduled_at: status_params[:scheduled_at], application: doorkeeper_token.application, poll: status_params[:poll], @@ -115,6 +117,7 @@ class Api::V1::StatusesController < Api::BaseController :sensitive, :spoiler_text, :visibility, + :local_only, :scheduled_at, :content_type, tags: [], |