diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-07-23 16:48:08 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-07-23 16:48:08 -0500 |
commit | 3862f48c34a00691a12c6002abd88b088cf7c13e (patch) | |
tree | f1d5d2299de3d470816300221d3dba6ac8ecc30c /app/controllers/api/v1 | |
parent | 2a6ccce070277c8c278a2e8403f45394eec06f91 (diff) |
add self-destructing roars & `live`/`lifespan` bangtags
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r-- | app/controllers/api/v1/statuses_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb index a9728f997..305e8d113 100644 --- a/app/controllers/api/v1/statuses_controller.rb +++ b/app/controllers/api/v1/statuses_controller.rb @@ -52,6 +52,7 @@ class Api::V1::StatusesController < Api::BaseController spoiler_text: status_params[:spoiler_text], visibility: status_params[:visibility], scheduled_at: status_params[:scheduled_at], + delete_after: status_params[:delete_after], sharekey: status_params[:sharekey], application: doorkeeper_token.application, poll: status_params[:poll], @@ -92,6 +93,7 @@ class Api::V1::StatusesController < Api::BaseController :visibility, :sharekey, :scheduled_at, + :delete_after, :content_type, media_ids: [], poll: [ |