mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 07:45:07 +00:00
13 lines
433 B
TypeScript
13 lines
433 B
TypeScript
import { getAccessToken, withApiAuthRequired, getSession } from '@auth0/nextjs-auth0';
|
|
|
|
export default withApiAuthRequired(async function handler(req, res) {
|
|
const { accessToken } = await getAccessToken(req, res);
|
|
const response = await fetch(process.env.NEXT_PUBLIC_API_URL+'/api/admin/AdminArtistRequests', {
|
|
headers: {
|
|
"Authorization": `Bearer ${accessToken}`
|
|
}
|
|
});
|
|
res.status(response.status).json({})
|
|
});
|
|
|