mirror of
https://github.com/discourse/discourse.git
synced 2025-02-22 00:35:41 +08:00
9 lines
191 B
Ruby
9 lines
191 B
Ruby
class Admin::PluginsController < Admin::AdminController
|
|
|
|
def index
|
|
# json = Discourse.plugins.map(&:metadata)
|
|
render_serialized(Discourse.plugins, AdminPluginSerializer)
|
|
end
|
|
|
|
end
|