mirror of
https://github.com/discourse/discourse.git
synced 2026-08-11 02:59:07 +08:00
7 lines
198 B
Ruby
Vendored
7 lines
198 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class Admin::PluginsController < Admin::StaffController
|
|
def index
|
|
render_serialized(Discourse.visible_plugins, AdminPluginSerializer, root: "plugins")
|
|
end
|
|
end
|