Files
growstuff/app/controllers/admin_controller.rb
2013-05-29 14:37:42 +10:00

9 lines
168 B
Ruby

class AdminController < ApplicationController
def index
authorize! :manage, :all
respond_to do |format|
format.html # index.html.haml
end
end
end