Files
web/apps/scandic-web/constants/routes/myStay.js
Niclas Edenvin efa7336ebd Merged in feat/sw-1602-preliminary-receipt (pull request #1595)
feat/sw-1602 preliminary receipt

* feat(sw-1602): create page for preliminary receipt

* Add link to my stay page


Approved-by: Pontus Dreij
2025-03-24 07:55:15 +00:00

25 lines
737 B
JavaScript

/**
* @file Due to these records being used in next.config.js, and that is required
* to be a js file, we use jsdoc to type these.
*/
/** @type {import('@/types/routes').LangRoute} */
export const myStay = {
da: "/da/hotelreservation/min-ophold",
de: "/de/hotelreservation/meine-aufenthalte",
en: "/en/hotelreservation/my-stay",
fi: "/fi/hotelreservation/min-vistelma",
no: "/no/hotelreservation/min-ophold",
sv: "/sv/hotelreservation/min-vistelse",
}
/** @type {import('@/types/routes').LangRoute} */
export const preliminaryReceipt = {
da: `${myStay.da}/receipt`,
de: `${myStay.de}/receipt`,
en: `${myStay.en}/receipt`,
fi: `${myStay.fi}/receipt`,
no: `${myStay.no}/receipt`,
sv: `${myStay.sv}/receipt`,
}