Files
canvasManagement/nextjs/src/app/api/courses/route.ts

8 lines
208 B
TypeScript

import { fileStorageService } from "@/services/fileStorage/fileStorageService";
export async function GET() {
const courses = await fileStorageService.getCourseNames();
return Response.json(courses);
}