mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 21:03:46 +00:00

PR-URL: https://github.com/nodejs/node/pull/12480 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
var ssoAuth = require('./sso')
|
|
var npm = require('../npm')
|
|
|
|
module.exports.login = function login () {
|
|
npm.config.set('sso-type', 'oauth')
|
|
ssoAuth.login.apply(this, arguments)
|
|
}
|