Skip to content
Extraits de code Groupes Projets
Valider 1a245685 rédigé par Steel's avatar Steel
Parcourir les fichiers

svelte check

parent 8c32a13c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Pipeline #4683 en échec
import { sequence } from "@sveltejs/kit/hooks";
import cookieHandler from "./cookie";
import loginHandler from "./login";
import logoutHandler from "./logout";
import loginCallbackHandler from "./loginCallback";
import logoutCallbackHandler from "./logoutCallback";
import cookieHandler from "./cookie.js";
import loginHandler from "./login.js";
import logoutHandler from "./logout.js";
import loginCallbackHandler from "./loginCallback.js";
import logoutCallbackHandler from "./logoutCallback.js";
import type { Handle } from "@sveltejs/kit";
import type { InternalConfig } from "../types";
import type { InternalConfig } from "$lib/types.js";
const init: Handle = ({ event, resolve }) => {
event.locals.arise = {};
......
import { redirect } from "@sveltejs/kit";
import { generators } from "openid-client";
import { authCookie } from "../cookies";
import { authCookie } from "$lib/cookies.js";
import type { Handle } from "@sveltejs/kit";
import type { InternalConfig } from "../types";
import type { InternalConfig } from "$lib/types.js";
import { SEE_OTHER } from "http-status";
export default function (config: InternalConfig): Handle {
......
import { type Handle, redirect } from "@sveltejs/kit";
import { authCookie, setTokenSetCookie } from "../cookies";
import { authCookie, setTokenSetCookie } from "$lib/cookies.js";
import { errors } from "openid-client";
import type { InternalConfig } from "../types";
import type { InternalConfig } from "$lib/types.js";
import { base } from "$app/paths";
import { SEE_OTHER } from "http-status";
......
import { redirect } from "@sveltejs/kit";
import type { Handle } from "@sveltejs/kit";
import type { InternalConfig } from "../types";
import type { InternalConfig } from "$lib/types.js";
import { SEE_OTHER } from "http-status";
export default function (config: InternalConfig): Handle {
......
import { type Handle, redirect } from "@sveltejs/kit";
import { tokenSetCookie } from "../cookies";
import type { InternalConfig } from "../types";
import { tokenSetCookie } from "$lib/cookies.js";
import type { InternalConfig } from "$lib/types.js";
import { SEE_OTHER } from "http-status";
export default function (config: InternalConfig): Handle {
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter