mastodon/app/models/keyword_mute.rb
2017-10-21 14:54:21 -05:00

16 lines
351 B
Ruby

# == 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