diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-20 20:57:41 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 66c640fd38d46ce844f245c5596d161dbf813554 (patch) | |
tree | 24f7a8400926b645de09b9b379644f45bba8c807 /app/services | |
parent | bb9aa16284dd5d36e6c1931f483eb44debfdb1bc (diff) |
Allow sharekeys to be set via the API.
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/post_status_service.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 97ba26ddc..9ac38ca4a 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -12,6 +12,7 @@ class PostStatusService < BaseService # @option [Status] :thread Optional status to reply to # @option [Boolean] :sensitive # @option [String] :visibility + # @option [String] :sharekey # @option [String] :spoiler_text # @option [String] :language # @option [String] :scheduled_at @@ -166,6 +167,7 @@ class PostStatusService < BaseService sensitive: (@options[:sensitive].nil? ? @account.user&.setting_default_sensitive : @options[:sensitive]) || @options[:spoiler_text].present?, spoiler_text: @options[:spoiler_text] || '', visibility: @visibility, + sharekey: @sharekey, language: language_from_option(@options[:language]) || @account.user&.setting_default_language&.presence || LanguageDetector.instance.detect(@text, @account), application: @options[:application], content_type: @options[:content_type] || @account.user&.setting_default_content_type, |