Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tnramalho committed Sep 30, 2024
1 parent 0636d69 commit f2eaba9
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ export const authAppleDefaultConfig = registerAs(
* The login dto
*/
loginDto: AuthAppleLoginDto,
clientID: process.env.APPLE_CLIENT_ID ?? '',
callbackURL: process.env.APPLE_CALLBACK_URL ?? '',
teamID: process.env.APPLE_TEAM_ID ?? '',
keyID: process.env.APPLE_KEY_ID ?? '',
clientID: process.env.APPLE_CLIENT_ID ?? 'client_id',
callbackURL: process.env.APPLE_CALLBACK_URL ?? 'callback_url',
teamID: process.env.APPLE_TEAM_ID ?? 'teamID',
keyID: process.env.APPLE_KEY_ID ?? 'keyID',
privateKeyLocation: process.env.APPLE_PRIVATE_KEY_LOCATION ?? '',
privateKeyString: process.env.APPLE_PRIVATE_KEY_STRING ?? '',
privateKeyString:

Check failure on line 23 in packages/nestjs-auth-apple/src/config/auth-apple-default.config.ts

View workflow job for this annotation

GitHub Actions / build (18.x)

Delete `⏎·····`
process.env.APPLE_PRIVATE_KEY_STRING ?? '',
passReqToCallback: false,
scope:
'APPLE_SCOPE' in process.env && process.env.APPLE_SCOPE
Expand Down

0 comments on commit f2eaba9

Please sign in to comment.