maisonarbre_app/app/controllers/admin/blocks_controller.rb
Nicolas Bally 1fa250e0e4 Initial
2011-07-15 12:29:09 +02:00

18 lines
248 B
Ruby

# -*- encoding : utf-8 -*-
class Admin::BlocksController < ApplicationController
before_filter :authenticate_admin!
layout "admin"
def show
@block = Block.find(params[:id])
if request.xhr?
render :layout => false
end
end
end