After adding user management, we can now move to the next user story that allows users to add stories to their favorites. Favorites data is stored in the Firebase Cloud Firestore. We’ll use AngularFire2 to interact with Firestore. The favorites page is only accessible to authenticated users, and we’ll use authentication guard to protect this page. After reading this chapter, you should know how to interact with Firebase Cloud Firestore.
Favorites Service
Favorites data is stored in the Firebase Cloud Firestore. Even though Cloud Firestore is still in beta at the time of ...