From 25689e5b3992ac1759f7a7f09fe54f7caf1176ae Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sun, 28 Jun 2020 06:19:52 -0500 Subject: [Privacy] Let admins exclude private domains from the public allowlist --- app/models/domain_allow.rb | 1 + app/models/status.rb | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) (limited to 'app/models') diff --git a/app/models/domain_allow.rb b/app/models/domain_allow.rb index 5fe0e3a29..734284e59 100644 --- a/app/models/domain_allow.rb +++ b/app/models/domain_allow.rb @@ -8,6 +8,7 @@ # domain :string default(""), not null # created_at :datetime not null # updated_at :datetime not null +# hidden :boolean default(FALSE) # class DomainAllow < ApplicationRecord diff --git a/app/models/status.rb b/app/models/status.rb index 594ae98c0..e4d94186e 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -22,7 +22,6 @@ # application_id :bigint(8) # in_reply_to_account_id :bigint(8) # local_only :boolean -# full_status_text :text default(""), not null # poll_id :bigint(8) # content_type :string # deleted_at :datetime -- cgit