Skip to content

Commit

Permalink
deedge
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJustChew committed Jun 18, 2024
1 parent 07f8902 commit d1dca58
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/app/api/ais_auth/refresh/route.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { refreshUserSession, signInToCCXP } from "@/lib/headless_ais";
import { NextRequest, NextResponse } from "next/server";

export const runtime = 'edge';

export const POST = async (req: NextRequest) => {
const form = await req.formData();
const studentid = form.get("studentid");
Expand Down
2 changes: 0 additions & 2 deletions src/app/api/ais_auth/signin/route.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { signInToCCXP } from "@/lib/headless_ais";
import { NextRequest, NextResponse } from "next/server";

export const runtime = 'edge';

export const POST = async (req: NextRequest) => {
const form = await req.formData();
const studentid = form.get("studentid");
Expand Down

0 comments on commit d1dca58

Please sign in to comment.