about summary refs log tree commit diff
path: root/app/models/status.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2020-02-16 02:08:21 -0600
committermultiple creatures <dev@multiple-creature.party>2020-02-16 02:08:21 -0600
commit6ca44fd04fe7cbb5cdac0eee31ba31107bda8f26 (patch)
tree969b9eae4155f42e02e73d64d637a46fe86c51af /app/models/status.rb
parentbc201505d02e94259f9d48d2b0341fc704af781e (diff)
change context of `hidden?` to mean a hidden post, not a non-distributable post
Diffstat (limited to 'app/models/status.rb')
-rw-r--r--app/models/status.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 067bdb72a..a1dc37fe8 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -250,10 +250,6 @@ class Status < ApplicationRecord
     end
   end
 
-  def hidden?
-    hidden || !distributable?
-  end
-
   def distributable?
     public_visibility? || unlisted_visibility? || local_visibility?
   end