mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 22:42:13 +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
|