about summary refs log tree commit diff
path: root/app/models/mute.rb
diff options
context:
space:
mode:
authorSurinna Curtis <ekiru.0@gmail.com>2017-07-17 21:10:37 -0500
committerSurinna Curtis <ekiru.0@gmail.com>2017-09-13 21:47:30 -0500
commit44207b6af6977f44200b6fd82f3e18ba70fd7cc7 (patch)
treed217d36b0589e0cee924a849c8e3da1724f5e912 /app/models/mute.rb
parent27e55da8530b6557bd5375240bee2aa09f25d021 (diff)
Add muting_notifications? and a notifications argument to mute!
Diffstat (limited to 'app/models/mute.rb')
-rw-r--r--app/models/mute.rb11
1 files changed, 6 insertions, 5 deletions
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