forked from saurabh/orbit4-5
11 lines
292 B
Ruby
11 lines
292 B
Ruby
|
class Admin::DesignsController < OrbitAdminController
|
||
|
layout "structure"
|
||
|
|
||
|
def index
|
||
|
@designs = Dir.glob("#{Rails.root}/app/templates/*").map{|template| {
|
||
|
"key"=>template.split('/').last,
|
||
|
"title"=>template.split('/').last.titleize,
|
||
|
"author"=>"Ray"
|
||
|
}}
|
||
|
end
|
||
|
end
|