Skip to content

Commit 51418df

Browse files
committed
removed env file
1 parent cb007fc commit 51418df

2 files changed

Lines changed: 0 additions & 10 deletions

File tree

1-Authentication/7-sign-in-express-mfa/App/.env.dev

Lines changed: 0 additions & 8 deletions
This file was deleted.

1-Authentication/7-sign-in-express-mfa/App/routes/users.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ router.post(
5050
if (!!req.body) {
5151
let body = req.body;
5252
const graphEndpoint = GRAPH_ME_ENDPOINT;
53-
console.log(body)
5453
// API that calls for a single singed in user.
5554
// more infromation for this endpoint found here
5655
// https://learn.microsoft.com/en-us/graph/api/user-update?view=graph-rest-1.0&tabs=http
@@ -59,7 +58,6 @@ router.post(
5958
givenName: body.givenName,
6059
surname: body.surname,
6160
mail: body.mail,
62-
// officeLocation: body.officeLocation
6361
})
6462
.then((response) => {
6563
if (response.status === 204) {

0 commit comments

Comments
 (0)