Last active
August 2, 2024 09:56
-
-
Save NetguruGist/ab567c2be928639432e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
model() { | |
let userPromise = this.store.findAll(‘user’); | |
userPromise.catch((error) => { | |
// transition to another route and show some error notification saying your team is doing their best to fix the problem | |
}); | |
return userPromise; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment