Skip to main content
Latest
variable oak.REDIRECT_BACK
import { oak } from "https://deno.land/x/create_react_app@v0.1.2/deps.ts";
const { REDIRECT_BACK } = oak;

A symbol that indicates to response.redirect() to attempt to redirect back to the request referrer. For example:

import { Application, REDIRECT_BACK } from "https://deno.land/x/oak/mod.ts";

const app = new Application();

app.use((ctx) => {
  if (ctx.request.url.pathName === "/back") {
    ctx.response.redirect(REDIRECT_BACK, "/");
  }
});

await app.listen({ port: 80 });

type

symbol