2 Commits

Author SHA1 Message Date
de35986633 test jenkins webhook
Some checks failed
InnoHub Processor/tatort/pipeline/head There was a failure building this commit
2025-06-26 08:12:03 +02:00
843c4ecaf4 test jenkins webhook 2025-06-26 08:11:40 +02:00
2 changed files with 12 additions and 5 deletions

7
Jenkinsfile vendored
View File

@@ -5,6 +5,13 @@ pipeline {
nodejs 'NodeJS-24.2.0'
}
environment {
REGISTRY = 'https://gitea.innovation-hub-niedersachsen.de/'
IMAGE = 'tatort-app'
USER = 'jared'
TOKEN = credentials('c661e484bb4f032f8a0a5b02cda6f3344ca584b5')
}
options {
buildDiscarder(
BuildHistoryManager([

View File

@@ -3,11 +3,11 @@ import { redirect } from '@sveltejs/kit';
import type { PageServerLoad } from './list/[vorgang]/$types';
export const load: PageServerLoad = async ({ params, url, locals }) => {
if (locals.user) {
return {
user: locals.user
};
}
// if (locals.user) {
// return {
// user: locals.user
// };
// }
const caseId = params.vorgang;
const caseToken = url.searchParams.get('token');