mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-17 08:37:10 +08:00
7 lines
198 B
Ruby
7 lines
198 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::PluginsController < Admin::StaffController
|
|
def index
|
|
render_serialized(Discourse.visible_plugins, AdminPluginSerializer, root: "plugins")
|
|
end
|
|
end
|