Skip to content

Commit 841dadd

Browse files
author
Ilya Radchenko
committed
Merge pull request #33 from saintedlama/patch-1
Brings back the comma
2 parents 33dcbbe + 7b4d9a7 commit 841dadd

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/webapp.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ module.exports = {
6767
var callbackURL = config.hostname + '/auth/github/callback';
6868

6969
passport.use(new GithubStrategy({
70-
clientID : config.appId
71-
clientSecret: config.appSecret
72-
callbackURL : callbackURL
73-
authorizationURL: config.apiDomain + '/login/oauth/authorize'
74-
tokenURL: config.apiDomain + '/login/oauth/access_token'
75-
userProfileURL: config.apiEndpoint + '/user'
76-
scope: ['repo']
70+
clientID : config.appId,
71+
clientSecret: config.appSecret,
72+
callbackURL : callbackURL,
73+
authorizationURL: config.apiDomain + '/login/oauth/authorize',
74+
tokenURL: config.apiDomain + '/login/oauth/access_token',
75+
userProfileURL: config.apiEndpoint + '/user',
76+
scope: ['repo'],
7777
passReqToCallback: true
7878
}, validateAuth));
7979
},

0 commit comments

Comments
 (0)