mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 19:35:09 +08:00
3d4faf3272
Automation (previously known as discourse-automation) is now a core plugin.
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
|