9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
import auth0 from "../../../lib/auth0";
|
|
import { withErrorHandling } from "../../../lib/apiHelpers";
|
|
|
|
const me = withErrorHandling(async (req, res) => {
|
|
await auth0.handleProfile(req, res);
|
|
});
|
|
|
|
export default me;
|