diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-20 08:02:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-20 08:02:44 +0200 |
commit | fd5285658f477c5b6a9c7af0935b5c889729b2e0 (patch) | |
tree | 42f11c5da1570ddfc6820e5bab6b22202c24c158 /app/models | |
parent | d5bfba3262cf531d767f583a79fc2fbe8bff93b4 (diff) |
Add option to block reports from domain (#8830)
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/domain_block.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app/models/domain_block.rb b/app/models/domain_block.rb index 93658793b..b828a9d71 100644 --- a/app/models/domain_block.rb +++ b/app/models/domain_block.rb @@ -3,12 +3,13 @@ # # Table name: domain_blocks # -# id :bigint(8) not null, primary key -# domain :string default(""), not null -# created_at :datetime not null -# updated_at :datetime not null -# severity :integer default("silence") -# reject_media :boolean default(FALSE), not null +# id :bigint(8) not null, primary key +# domain :string default(""), not null +# created_at :datetime not null +# updated_at :datetime not null +# severity :integer default("silence") +# reject_media :boolean default(FALSE), not null +# reject_reports :boolean default(FALSE), not null # class DomainBlock < ApplicationRecord |