Retrospring/app/models/mute_rule.rb

12 lines
225 B
Ruby

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