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

x/superdeno/test/deps.ts>Oak.REDIRECT_BACK

Super-agent driven library for testing Deno HTTP servers.
Latest
variable Oak.REDIRECT_BACK
import { Oak } from "https://deno.land/x/superdeno@4.9.0/test/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