diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-02-16 01:38:07 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-16 01:38:07 -0600 |
commit | a416fc1f17e7abd967c177721c07a5e56fdedac4 (patch) | |
tree | b4b8453c0248da4bfddaf08604226e4efe0a6724 /app/services | |
parent | f7ef10bd38b62bfd03f5ccc556de26e0c98b56a1 (diff) |
make it possible to publish drafts local-only
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/post_status_service.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 415243485..fde56238a 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -130,7 +130,6 @@ class PostStatusService < BaseService def limit_visibility_if_draft if @tags.include?('self.draft') || @preloaded_tags.include?('self.draft') - @local_only = true @hidden = true end end |