Commit c6a50ce 1 parent 44267bf commit c6a50ce Copy full SHA for c6a50ce
File tree 1 file changed +4
-4
lines changed
app/templates/server/config/environment
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,24 +44,24 @@ var all = {
44
44
facebook : {
45
45
clientID : process . env . FACEBOOK_ID || 'id' ,
46
46
clientSecret : process . env . FACEBOOK_SECRET || 'secret' ,
47
- callbackURL : process . env . DOMAIN || '' + '/auth/facebook/callback'
47
+ callbackURL : ( process . env . DOMAIN || '' ) + '/auth/facebook/callback'
48
48
} ,
49
49
< % } if ( filters . twitterAuth ) { % >
50
50
twitter: {
51
51
consumerKey : process . env . TWITTER_ID || 'id' ,
52
52
consumerSecret : process . env . TWITTER_SECRET || 'secret' ,
53
- callbackURL : process . env . DOMAIN || '' + '/auth/twitter/callback'
53
+ callbackURL : ( process . env . DOMAIN || '' ) + '/auth/twitter/callback'
54
54
} ,
55
55
< % } if ( filters . googleAuth ) { % >
56
56
google : {
57
57
clientID : process . env . GOOGLE_ID || 'id' ,
58
58
clientSecret : process . env . GOOGLE_SECRET || 'secret' ,
59
- callbackURL : process . env . DOMAIN || '' + '/auth/google/callback'
59
+ callbackURL : ( process . env . DOMAIN || '' ) + '/auth/google/callback'
60
60
} < % } % >
61
61
} ;
62
62
63
63
// Export the config object based on the NODE_ENV
64
64
// ==============================================
65
65
module . exports = _ . merge (
66
66
all ,
67
- require ( './' + process . env . NODE_ENV + '.js' ) || { } ) ;
67
+ require ( './' + process . env . NODE_ENV + '.js' ) || { } ) ;
You can’t perform that action at this time.
0 commit comments