fix
Deploy banu-front / deploy (push) Successful in 1m27s

This commit is contained in:
sajjadtalkhabi
2026-07-07 17:36:43 +03:30
parent b9ef684b51
commit 38a396ba21
89 changed files with 1815 additions and 478 deletions
+17
View File
@@ -206,3 +206,20 @@ export const SERVICE_TYPE = Object.freeze({
educational: 'آموزشی',
other: 'سایر',
})
// Lifecycle of a dispatch request assigned to a missionary. `pending` is the
// initial backend state; the missionary may set seen, accepted, or rejected.
export const MISSIONARY_REQUEST_STATUS = Object.freeze({
pending: 'در انتظار بررسی',
seen: 'دیده شده',
accepted: 'پذیرفته شده',
rejected: 'رد شده',
})
// Landing route per role after login / when a logged-in user hits a guest
// page. Roles not listed here fall back to the student dashboard.
export const ROLE_HOME_ROUTES = Object.freeze({
admin: 'admin-dashboard',
counselor: 'counselor-consultations',
missionary: 'missionary-requests',
})