# frozen_string_literal: true class WatchedWordSerializer < ApplicationSerializer attributes :id, :word, :regexp, :replacement, :action, :case_sensitive, :watched_word_group_id, :html def regexp WordWatcher.word_to_regexp(word, engine: :js) end def action WatchedWord.actions[object.action] end def include_replacement? WatchedWord.has_replacement?(action) end def include_html? object.action == WatchedWord.actions[:replace] && object.html end end