Skip to content

Instantly share code, notes, and snippets.

@mweststrate
Created August 21, 2016 19:34
Show Gist options
  • Save mweststrate/b487ad8f3faaea9c7f30b9df2f00c853 to your computer and use it in GitHub Desktop.
Save mweststrate/b487ad8f3faaea9c7f30b9df2f00c853 to your computer and use it in GitHub Desktop.
@action performLogin(username, password, callback) {
this.fetch(`/json/${username}-${password}.json`)
.then(user => {
this.currentUser = user
callback(true)
})
.catch(err => {
callback(false)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment