Retrospring/app/models/mute_rule.rb

8 lines
151 B
Ruby

class MuteRule < ApplicationRecord
belongs_to :user
def applies_to?(post)
!!(post.content =~ /\b#{Regexp.escape(muted_phrase)}\b/i)
end
end