0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-08 17:53:55 +08:00
discourse/plugins/discourse-hcaptcha/lib/discourse_hcaptcha/engine.rb
Jarek Radosz e372355fd0
DEV: Clean up scope resolution operators in plugins (#34979)
Co-authored-by: Loïc Guitaut <loic@discourse.org>
2025-09-30 14:36:34 +02:00

9 lines
226 B
Ruby
Vendored

# frozen_string_literal: true
module DiscourseHcaptcha
class Engine < ::Rails::Engine
engine_name PLUGIN_NAME
isolate_namespace DiscourseHcaptcha
config.autoload_paths << File.join(config.root, "lib")
end
end