diff --git a/src/pages/api/auth/[...nextauth].js b/src/pages/api/auth/[...nextauth].js index 125ef02..13ff465 100644 --- a/src/pages/api/auth/[...nextauth].js +++ b/src/pages/api/auth/[...nextauth].js @@ -11,7 +11,9 @@ import { createUser, getUser } from "../../../utils/helpers/userHelpers"; const pass = generateRandomPassword(); createUser("admin", pass).then((returned) => { if (returned === true) { - console.log(`Created admin account. Username: admin, Password: ${pass}`); + console.log( + `Created admin account. Username: admin, Password: ${pass}, uploadKey: ${returned.uploadKey}` + ); } });