discourse/plugins/automation/app/controllers/discourse_automation/admin_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
238 B
Ruby
Raw Normal View History

# 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