Skip to content

Instantly share code, notes, and snippets.

@bradylove
Created March 15, 2012 04:06
Show Gist options
  • Select an option

  • Save bradylove/2041803 to your computer and use it in GitHub Desktop.

Select an option

Save bradylove/2041803 to your computer and use it in GitHub Desktop.
before_create :set_new_user_role
def set_new_user_role
if user is first user
then user.role = admin_role_id
user.save
else
user.role = default_role_id
user.save
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment