Skip to content

Instantly share code, notes, and snippets.

@wojtekerbetowski
Created February 18, 2012 21:11
Show Gist options
  • Save wojtekerbetowski/1861032 to your computer and use it in GitHub Desktop.
Save wojtekerbetowski/1861032 to your computer and use it in GitHub Desktop.
UserRegisterer
class UserRegisterer @Inject() (hasher: hasher) {
def register(username, password) = User(username, hasher.hash(password)).save
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment