discourse/app/serializers/watched_word_list_serializer.rb
Selase Krakani b3bb3872cf
FIX: Make serialized watched word regex Javascript compatible (#22010)
This change ensures Javascript compatible regex is serialized instead of
the default ruby based one.
2023-06-09 10:22:41 +00:00

26 lines
612 B
Ruby

# frozen_string_literal: true
class WatchedWordListSerializer < ApplicationSerializer
attributes :actions, :words, :compiled_regular_expressions
def actions
if SiteSetting.tagging_enabled
WatchedWord.actions.keys
else
WatchedWord.actions.keys.filter { |k| k != :tag }
end
end
def words
object.map { |word| WatchedWordSerializer.new(word, root: false) }
end
def compiled_regular_expressions
expressions = {}
actions.each do |action|
expressions[action] = WordWatcher.serializable_word_matcher_regexp(action, engine: :js)
end
expressions
end
end