Skip to content

Instantly share code, notes, and snippets.

@jonpaul
Created October 13, 2011 15:10
Show Gist options
  • Save jonpaul/1284458 to your computer and use it in GitHub Desktop.
Save jonpaul/1284458 to your computer and use it in GitHub Desktop.
make new admin users without assigning them a password
after_create { |admin| admin.send_reset_password_instructions }
def password_required?
new_record? ? false : super
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment