2010-05-10 22:39:52 +00:00
|
|
|
module Admin
|
|
|
|
class PagePartsController < BaseController
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
layout nil
|
2010-05-09 12:44:53 +00:00
|
|
|
|
2010-07-21 23:35:30 +00:00
|
|
|
respond_to :json
|
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
def index
|
|
|
|
parts = current_site.layouts.find(params[:layout_id]).parts
|
2010-07-21 23:35:30 +00:00
|
|
|
|
|
|
|
respond_with parts.collect(&:attributes)
|
2010-05-10 22:39:52 +00:00
|
|
|
end
|
2010-07-21 23:35:30 +00:00
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
end
|