fix: voeg .js toe submission

This commit is contained in:
Gabriellvl 2025-03-13 13:54:45 +01:00
parent e8975878aa
commit 3e2c73320b
4 changed files with 16 additions and 16 deletions

View file

@ -1,6 +1,6 @@
import { Request, Response } from "express";
import { getSubmission } from "../services/submissions";
import { Language, languageMap } from "../entities/content/language";
import { getSubmission } from "../services/submissions.js";
import { Language, languageMap } from "../entities/content/language.js";
interface SubmissionParams {
lohruid: string,
@ -30,4 +30,4 @@ export async function getSubmissionHandler(
}
res.json(submission);
}
}