2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-28 15:56:44 -05:00
|
|
|
class WatchedWordSerializer < ApplicationSerializer
|
2021-05-21 09:50:24 -05:00
|
|
|
attributes :id, :word, :regexp, :replacement, :action
|
|
|
|
|
|
|
|
def regexp
|
2021-06-18 10:54:06 -05:00
|
|
|
WordWatcher.word_to_regexp(word, whole: true)
|
2021-05-21 09:50:24 -05:00
|
|
|
end
|
|
|
|
|
2017-06-28 15:56:44 -05:00
|
|
|
def action
|
|
|
|
WatchedWord.actions[object.action]
|
|
|
|
end
|
2021-02-25 06:00:58 -06:00
|
|
|
|
|
|
|
def include_replacement?
|
2021-03-22 15:32:18 -05:00
|
|
|
WatchedWord.has_replacement?(action)
|
2021-02-25 06:00:58 -06:00
|
|
|
end
|
2017-06-28 15:56:44 -05:00
|
|
|
end
|