discourse/plugins/automation/app/controllers/discourse_automation/admin_controller.rb
Osama Sayegh 3d4faf3272
FEATURE: Merge discourse-automation (#26432)
Automation (previously known as discourse-automation) is now a core plugin.
2024-04-03 18:20:43 +03:00

17 lines
238 B
Ruby

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