I replaced the metronioc url with my own api url but i am navigating to dashboard.Can anyone help me
i have two fields for login ....username and password
i do it as you described but it restrict me to go to dashboard
Hi Zahid Hussain,
Sorry for the late reply.
Our current functionality allows only authenticated users to access dashboard page, if you want to make dashboard page available for all users you can move the dashboard page route from src/app/routing/PrivateRoutes.tsx to src/app/routing/AppRoutes.tsx.
Regards,
Lauris Stepanovs,
Keenthemes Support Team
Hi Zahid Hussain,
Thank you for reaching out to us.
We are handling redirects to auth page for unauthenticated users in files src/app/routing/AppRoutes.tsx using statement {currentUser ? (...) : (...)}
.
Please make sure that you have set authentication for auth users. You can refer to file src/app/modules/auth/components/Login.tsx.
Regards,
Lauris Stepanovs,
Keenthemes Support Team