Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
style: Changes requested by Sandros review
  • Loading branch information
cxcarvaj committed Feb 16, 2022
commit 462117f516734f42b7690c072834c5a90b79e7ce
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = {
slackApiToken: process.env["SLACK_TOKEN_NOTIFY"],
userNameMS: process.env["USER_NAME_MS"],
userPasswordMS: process.env["USER_PASSWORD_MS"],
B2CLogin = process.env["B2C_LOGIN"]
b2cLogin = process.env["B2C_LOGIN"]
};

module.exports = config;
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ const axios = require('axios');
const config = require('./config');

const getToken = async () => {
const { clientId, userNameMS, userPasswordMS, B2CLogin } = config;
const endpoint = B2CLogin;
const { clientId, userNameMS, userPasswordMS, b2cLogin } = config;
const endpoint = b2cLogin;

const params = new URLSearchParams();

Expand Down