discourse/plugins/discourse-post-voting/lib/post_voting/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

11 lines
294 B
Ruby

# frozen_string_literal: true
module PostVoting
CREATE_AS_POST_VOTING_DEFAULT = "create_as_post_voting_default"
ONLY_POST_VOTING_IN_THIS_CATEGORY = "only_post_voting_in_this_category"
class Engine < ::Rails::Engine
engine_name PLUGIN_NAME
isolate_namespace PostVoting
end
end