This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-09 15:28:28 -07: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 00:28:20 -07:00
|
|
|
def self.matches?(text)
|
|
|
|
end
|
2017-10-09 15:28:28 -07:00
|
|
|
end
|