Project

General

Profile

Download (252 Bytes) Statistics
| Branch: | Tag: | Revision:
module Api
module V2
class PluginsController < BaseController

api :GET, '/plugins', 'List of installed plugins'
def index
@plugins = Foreman::Plugin.all
@total = @plugins.try(:count).to_i
end

end
end
end
(29-29/44)