orbit-basic/app/controllers/admin/plugins_controller.rb

12 lines
183 B
Ruby

class Admin::PluginsController < ApplicationController
layout "new_admin"
def index
@plugins = ModuleApp.where(has_plugin: true).order_by(:title, :asc)
end
end