release: WRNexusJS 0.5.0
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { authSession, requireAuth } from "@wrnexus/auth";
|
||||
import type { Middleware } from "@wrnexus/core";
|
||||
import { auth } from "../lib/auth.ts";
|
||||
|
||||
const hydrate = authSession(auth);
|
||||
const accountGuard = requireAuth({ loginPath: "/sign-in" });
|
||||
|
||||
const middleware: Middleware = async (ctx, next) => {
|
||||
return hydrate(ctx, () =>
|
||||
ctx.url.pathname.startsWith("/account") ? accountGuard(ctx, next) : next(),
|
||||
);
|
||||
};
|
||||
|
||||
export default middleware;
|
||||
Reference in New Issue
Block a user