diff options
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 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, |