0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-04 10:39:43 +08:00
discourse/lib/email_templates_finder.rb
Jarek Radosz 48691ee582
DEV: Enable Rails/FilePath rubocop rule (#40097)
(to be enabled in the shared config)
2026-05-19 19:07:54 +02:00

33 lines
655 B
Ruby
Vendored

# frozen_string_literal: true
class EmailTemplatesFinder
def self.list
path = Rails.root.join("config/locales/server.en.yml").to_s
yaml = YAML.load_file(path, aliases: true)
new(yaml).list
end
attr_reader :list
def initialize(obj)
@obj = obj
@list = []
check(@obj, "")
@list.sort!
end
private
def check(obj, path)
obj.each do |key, val|
if Hash === val
next_path = "#{path}#{key}"
if val.key?("text_body_template") && val.key?("subject_template")
@list << next_path.sub("en.", "")
else
check(val, "#{next_path}.")
end
end
end
end
end