fix: suppress unused userId params in checklist and issue services

This commit is contained in:
Matthias Hochmeister
2026-03-28 15:27:15 +01:00
parent 0c2ea829aa
commit 0a912e60b5
2 changed files with 2 additions and 2 deletions

View File

@@ -459,7 +459,7 @@ async function submitExecution(
id: string,
items: Array<{ itemId: number; ergebnis: string; kommentar?: string }>,
notizen: string | null,
userId: string,
_userId: string,
) {
const client = await pool.connect();
try {

View File

@@ -638,7 +638,7 @@ async function getFiles(issueId: number) {
}
}
async function deleteFile(fileId: string, userId: string) {
async function deleteFile(fileId: string, _userId: string) {
try {
const fileResult = await pool.query(
`SELECT * FROM issue_dateien WHERE id = $1`,