Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fathym_common/src/deno.deps.ts>DenoKVOAuth.signOut

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
function DenoKVOAuth.signOut
Re-export
import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.176/src/deno.deps.ts";
const { signOut } = DenoKVOAuth;

Handles the sign-out process, and then redirects the client to the given success URL.

Examples

Example 1

import { signOut } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";

export async function signOutHandler(request: Request) {
  return await signOut(request);
}

Parameters

request: Request
optional
options: SignOutOptions