discourse/plugins/automation/app/controllers/discourse_automation/admin_controller.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

16 lines
217 B
Ruby
Vendored

# frozen_string_literal: true
module DiscourseAutomation
class AdminController < ::Admin::AdminController
requires_plugin PLUGIN_NAME
def index
end
def new
end
def edit
end
end
end