2017-10-09 18:28:28 -04:00
|
|
|
# == 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
|
2017-10-14 03:28:20 -04:00
|
|
|
def self.matches?(text)
|
|
|
|
end
|
2017-10-09 18:28:28 -04:00
|
|
|
end
|