mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 12:23:00 +08:00
17 lines
238 B
Ruby
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
|