Skip to content

Instantly share code, notes, and snippets.

@eastridge
Created June 20, 2013 20:27
Show Gist options
  • Save eastridge/5826303 to your computer and use it in GitHub Desktop.
Save eastridge/5826303 to your computer and use it in GitHub Desktop.
class AuthenticatedController < ApplicationController
before_filter :authenticate_person!, :is_admin
private
def is_admin
@is_admin = current_person.is_admin
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment