Skip to content

Commit 462117f

Browse files
committed
style: Changes requested by Sandros review
1 parent 2a1dc12 commit 462117f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nodejs-functions/src/handlers/automatic-clock-outs/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const config = {
99
slackApiToken: process.env["SLACK_TOKEN_NOTIFY"],
1010
userNameMS: process.env["USER_NAME_MS"],
1111
userPasswordMS: process.env["USER_PASSWORD_MS"],
12-
B2CLogin = process.env["B2C_LOGIN"]
12+
b2cLogin = process.env["B2C_LOGIN"]
1313
};
1414

1515
module.exports = config;

nodejs-functions/src/handlers/automatic-clock-outs/msal_client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ const axios = require('axios');
22
const config = require('./config');
33

44
const getToken = async () => {
5-
const { clientId, userNameMS, userPasswordMS, B2CLogin } = config;
6-
const endpoint = B2CLogin;
5+
const { clientId, userNameMS, userPasswordMS, b2cLogin } = config;
6+
const endpoint = b2cLogin;
77

88
const params = new URLSearchParams();
99

0 commit comments

Comments
 (0)