fix should be env not ENV
This commit is contained in:
@ -105,7 +105,7 @@ module.exports = {
|
|||||||
clientSecret: process.env.LINKEDIN_SECRET,
|
clientSecret: process.env.LINKEDIN_SECRET,
|
||||||
scope: ['r_fullprofile', 'r_emailaddress'],
|
scope: ['r_fullprofile', 'r_emailaddress'],
|
||||||
oAuthOptions: {
|
oAuthOptions: {
|
||||||
state: process.ENV.LINKED_STATE
|
state: process.env.LINKED_STATE
|
||||||
},
|
},
|
||||||
failureFlash: true
|
failureFlash: true
|
||||||
},
|
},
|
||||||
@ -122,7 +122,7 @@ module.exports = {
|
|||||||
clientSecret: process.env.LINKEDIN_SECRET,
|
clientSecret: process.env.LINKEDIN_SECRET,
|
||||||
scope: ['r_fullprofile', 'r_emailaddress'],
|
scope: ['r_fullprofile', 'r_emailaddress'],
|
||||||
authOptions: {
|
authOptions: {
|
||||||
state: process.ENV.LINKED_STATE
|
state: process.env.LINKED_STATE
|
||||||
},
|
},
|
||||||
failureFlash: true
|
failureFlash: true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user