Files
web/apps/scandic-web/constants/bookingFlowConfig.ts
Matilda Landström 3dce2d310f Merged in refactor/SW-2826-align-urls (pull request #3359)
refactor(SW-2826): align urls

* refactor(SW-2826): align urls


Approved-by: Anton Gunnarsson
2025-12-17 09:33:08 +00:00

25 lines
690 B
TypeScript

import {
bookingTerms,
customerService,
privacy,
scandicFriends,
} from "@scandic-hotels/common/constants/routes/customerService"
import { myStay } from "@scandic-hotels/common/constants/routes/myStay"
import type { BookingFlowConfig } from "@scandic-hotels/booking-flow/BookingFlowConfig"
export const bookingFlowConfig: BookingFlowConfig = {
bookingCodeEnabled: true,
redemptionType: "scandic",
savedCreditCardsEnabled: true,
enterDetailsMembershipIdInputLocation: "form",
variant: "scandic",
routes: {
myStay,
customerService,
bookingTermsAndConditions: bookingTerms,
membershipTermsAndConditions: scandicFriends,
privacyPolicy: privacy,
},
}