This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2012-09-13 10:13:34 +00:00
|
|
|
class Admin::PluginsController < ApplicationController
|
|
|
|
|
|
|
|
layout "new_admin"
|
|
|
|
|
|
|
|
def index
|
|
|
|
|
2012-09-24 06:10:44 +00:00
|
|
|
@plugins = ModuleApp.where(has_plugin: true).order_by(:title, :asc)
|
2012-09-13 10:13:34 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|