Aktueller Stand
This commit is contained in:
8
app/api/ical/[token]/[filename]/route.ts
Normal file
8
app/api/ical/[token]/[filename]/route.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { getIcalResponse } from "../../../../../lib/ical-export";
|
||||
|
||||
export async function GET(
|
||||
request: Request,
|
||||
context: { params: { token: string; filename: string } }
|
||||
) {
|
||||
return getIcalResponse(request, context.params.token);
|
||||
}
|
||||
Reference in New Issue
Block a user