Skip to content

Commit 40896ea

Browse files
committed
Removed User.Read scope from signin call
1 parent e1b21e0 commit 40896ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

1-Authentication/7-sign-in-express-mfa/App/controller/authController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const authProvider = require('../auth/AuthProvider');
22

33
exports.signIn = async (req, res, next) => {
4-
return authProvider.login(req, res, next, {scopes:["User.Read"]});
4+
return authProvider.login(req, res, next);
55
};
66

77
exports.handleRedirect = async (req, res, next) => {

0 commit comments

Comments
 (0)