authelia/web/src/services/SignOut.ts

18 lines
494 B
TypeScript

import { LogoutPath } from "@services/Api";
import { PostWithOptionalResponse } from "@services/Client";
export type SignOutResponse = { safeTargetURL: boolean } | undefined;
export type SignOutBody = {
targetURL?: string;
};
export async function signOut(targetURL: string | undefined): Promise<SignOutResponse> {
const body: SignOutBody = {};
if (targetURL) {
body.targetURL = targetURL;
}
return PostWithOptionalResponse<SignOutResponse>(LogoutPath, body);
}