From 44207b6af6977f44200b6fd82f3e18ba70fd7cc7 Mon Sep 17 00:00:00 2001 From: Surinna Curtis Date: Mon, 17 Jul 2017 21:10:37 -0500 Subject: Add muting_notifications? and a notifications argument to mute! --- app/models/mute.rb | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'app/models/mute.rb') diff --git a/app/models/mute.rb b/app/models/mute.rb index 00e5661a7..40fb3f0f2 100644 --- a/app/models/mute.rb +++ b/app/models/mute.rb @@ -3,11 +3,12 @@ # # Table name: mutes # -# id :integer not null, primary key -# account_id :integer not null -# target_account_id :integer not null -# created_at :datetime not null -# updated_at :datetime not null +# id :integer not null, primary key +# account_id :integer not null +# target_account_id :integer not null +# created_at :datetime not null +# updated_at :datetime not null +# hide_notifications :boolean default(FALSE), not null # class Mute < ApplicationRecord -- cgit