12 lines
210 B
Ruby
12 lines
210 B
Ruby
|
class Admin::PluginsController < ApplicationController
|
||
|
|
||
|
layout "new_admin"
|
||
|
|
||
|
def index
|
||
|
|
||
|
@module_apps = ModuleApp.excludes(widgets: nil).where(has_plugin: true).order_by(:title, :asc)
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|