Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { cookies } from 'next/headers'
export function validator(action) {
return async function (arg) {
'use server'
const auth = (await cookies()).get('auth')
if (auth?.value !== '1') {
throw new Error('Unauthorized request')
}
return action(arg)
}
}