Skip to content

Instantly share code, notes, and snippets.

@cpjolicoeur
Created November 5, 2008 15:58
Show Gist options
  • Save cpjolicoeur/22360 to your computer and use it in GitHub Desktop.
Save cpjolicoeur/22360 to your computer and use it in GitHub Desktop.
validates_presence_of :home_site, :unless => Proc.new { |u| u.superuser? }
##
SUPERUSER = 1
ADMIN = 2
MANAGER = 3
ATTENDANT = 4
DEFAULT_ROLE = ATTENDANT
ROLES = [ SUPERUSER, ADMIN, MANAGER, ATTENDANT ]
##
def superuser?
role == SUPERUSER
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment