Search⌘ K
AI Features

Adding Dashboard Feature

Explore how to create and configure a user dashboard module in Angular, set up routing for it, and redirect users after login. Understand the process of generating dashboard components, updating routing modules, and verify functionality through end-to-end testing, laying the foundation for an interactive dashboard.

We'll cover the following...

We now have the ability to create and log in new users who are signing up for the first time. As we wrote in a few comments, we’d like to redirect them to a user dashboard. In our end product, our dashboard will contain a calendar displaying events, but for now, we only want to create the dashboard module, configure its routing, and redirect our users to this new view.

Setting-Up user dashboard

First, we need to create our dashboard module and component.

 ...