by Jason Shaw.
I am trying to configure the app so that after logging in, it goes to a custom component with its own views, controllers, services and routes instead of going directly to my moodle site ("My Courses" page). How can I configure app to do this?
My initial approach was to make a new directory in www/core/components called "custom," make my views, routes, controllers and services, and reroute the app so that it goes from the "login" component to my "custom" component.
The flow of the app should look like this:
1. Login Component --> 2. My Custom Component --> 3. Courses Component
Is there a central routes.js or app.js file where I can change the flow of the app to go from the Login component to my custom component, and then from my custom component to the Courses component, instead of directly from Login to Courses?
Thank you for your help.