Skip to content

Instantly share code, notes, and snippets.

@nchanged
Created July 26, 2016 07:42
Show Gist options
  • Save nchanged/5641d608cbef0fd1c629893896b5fe83 to your computer and use it in GitHub Desktop.
Save nchanged/5641d608cbef0fd1c629893896b5fe83 to your computer and use it in GitHub Desktop.
const UserFlow = {
fetchUser : (criteria) => {
return User.find(criteria).first() // Fetching a record
},
checkUserExists : (email) => {
return this.fetchUser({email : email});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment