link-stack/apps/link/app/api/v1/users/route.ts

8 lines
227 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
import { NextRequest, NextResponse } from 'next/server';
const handler = (req: NextRequest) => {
2023-08-25 07:11:33 +00:00
NextResponse.redirect('/zammad/api/v1' + req.url.substring('/api/v1'.length));
2023-06-26 10:07:12 +00:00
};
export { handler as GET, handler as POST };