about summary refs log tree commit diff
path: root/app/models/keyword_mute.rb
blob: d397a1f41fb1c47835217422a4664ec65054a976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# == Schema Information
#
# Table name: keyword_mutes
#
#  id         :integer          not null, primary key
#  account_id :integer          not null
#  keyword    :string           not null
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

class KeywordMute < ApplicationRecord
  def self.matches?(text)
  end
end