Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created April 14, 2010 21:08
Show Gist options
  • Save workmad3/366346 to your computer and use it in GitHub Desktop.
Save workmad3/366346 to your computer and use it in GitHub Desktop.
class AdminController < ActionController::Base
def index
if can? :access, AdminController
//...
else
unauthorized!
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment