From 0f518138cce30961a53ea577f550acd3a2b2d241 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 8 Nov 2020 23:04:35 +0100 Subject: [PATCH] change link to admin in ical --- helpers/ical.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/ical.ts b/helpers/ical.ts index a725c9c..165d624 100644 --- a/helpers/ical.ts +++ b/helpers/ical.ts @@ -17,7 +17,7 @@ export function generateBookedCalendar(bookings: Booking[]) { start: convertDay(booking.days[0]), end: convertDay(booking.days[booking.days.length - 1]), title: `Buchung ${booking.booker.name}`, - description: `Link: ${getBaseURL()}/booking/${booking.uuid}`, + description: `Link: ${getBaseURL()}/admin/booking/${booking.uuid}`, status: booking.status === BOOKING_STATUS.CONFIRMED ? ('CONFIRMED' as EventStatus)