feat: add consumer profile management; implement profile form, reset password functionality, and API integration

This commit is contained in:
2026-05-18 10:30:25 +03:30
parent 78501b907b
commit 79c00e0149
15 changed files with 309 additions and 5 deletions
+2
View File
@@ -3,6 +3,7 @@ import { CONSUMER_ACCOUNTS_ROUTES } from './modules/accounts/constants';
import { CONSUMER_BUSINESS_ACTIVITIES_ROUTES } from './modules/businessActivities/constants';
import { CONSUMER_CUSTOMERS_ROUTES } from './modules/customers/constants';
import { CONSUMER_POSES_ROUTES } from './modules/poses/constants';
import { CONSUMER_PROFILE_ROUTES } from './modules/profile/constants';
import { CONSUMER_SALE_INVOICES_ROUTES } from './modules/saleInvoices/constants';
export const CONSUMER_ROUTES = {
@@ -19,5 +20,6 @@ export const CONSUMER_ROUTES = {
...CONSUMER_CUSTOMERS_ROUTES,
...CONSUMER_SALE_INVOICES_ROUTES,
...CONSUMER_POSES_ROUTES,
...CONSUMER_PROFILE_ROUTES,
],
} as Route;