mirror of
https://github.com/discourse/discourse.git
synced 2025-03-09 14:34:35 +00: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
|