We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb007fc commit 51418dfCopy full SHA for 51418df
2 files changed
1-Authentication/7-sign-in-express-mfa/App/.env.dev
1-Authentication/7-sign-in-express-mfa/App/routes/users.js
@@ -50,7 +50,6 @@ router.post(
50
if (!!req.body) {
51
let body = req.body;
52
const graphEndpoint = GRAPH_ME_ENDPOINT;
53
- console.log(body)
54
// API that calls for a single singed in user.
55
// more infromation for this endpoint found here
56
// https://learn.microsoft.com/en-us/graph/api/user-update?view=graph-rest-1.0&tabs=http
@@ -59,7 +58,6 @@ router.post(
59
58
givenName: body.givenName,
60
surname: body.surname,
61
mail: body.mail,
62
- // officeLocation: body.officeLocation
63
})
64
.then((response) => {
65
if (response.status === 204) {
0 commit comments