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