Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
c2eb9b3
fix(docs): fix default `maxAge` formula (#7406)
vixeven Apr 30, 2023
d739e8e
feat(adapters): add Account mapping before database write (#7369)
balazsorban44 Apr 30, 2023
5400645
chore: improve errors, add more docs (#7415)
balazsorban44 May 1, 2023
542c35d
fix: loosen profile types
balazsorban44 May 1, 2023
62e2ad1
chore: type fixes
balazsorban44 May 1, 2023
92a0fc4
fix: allow handling OAuth callback error response
balazsorban44 May 1, 2023
e3bdb38
fix(docs): remove extra heading
balazsorban44 May 3, 2023
6f5a503
chore: use `@ts-ignore`
balazsorban44 May 4, 2023
d6bc65f
chore: support release any package as experimental
balazsorban44 May 4, 2023
99247ce
chore: separate manual release job
balazsorban44 May 4, 2023
e0b5f18
chore: skip test for manual release
balazsorban44 May 4, 2023
eaf5080
chore: tweak
balazsorban44 May 4, 2023
8f416b6
chore: tweaks
balazsorban44 May 4, 2023
b96f013
chore: tweak manual release version
balazsorban44 May 5, 2023
f00ac78
chore: reduce breaking changes on Account mapping
balazsorban44 May 10, 2023
7ffd361
chore: add build to manual publish
balazsorban44 May 10, 2023
c336b10
chore: move build to root
balazsorban44 May 10, 2023
f5de6cf
docs(example): update broken link (#7504)
remirobichet May 10, 2023
cca94bf
feat: add update session to core (#7505)
balazsorban44 May 10, 2023
f62c016
chore: revert `picture` to `image`
balazsorban44 May 12, 2023
220ee41
chore: Move next.config.js file into the correct directory (#7580)
ghoshnirmalya May 18, 2023
4baf2c8
docs: Cypress.Cookies.defaults removed (#7574)
roy9495 May 18, 2023
8373bc9
feat: allow empty `account` mapper
balazsorban44 May 19, 2023
7711eb0
Merge branch 'main' of github.com:nextauthjs/next-auth
balazsorban44 May 19, 2023
527fff6
chore: Add Descope as a 🥉 bronze financial sponsor (#7615)
dorsha May 21, 2023
461b52e
chore(playgrounds): Nuxt 3.5.1 (#7626)
wobsoriano May 22, 2023
17e2c2f
docs: adapter card text color on hover when on dark mode (#7672)
anampartho May 29, 2023
a47b4ce
docs: fix info card rendering in oauth-tutorial.mdx (#7662)
grahampcharles May 29, 2023
26a1bc5
feat: introduce `@auth/prisma-adapter`
balazsorban44 Jun 1, 2023
ec933f4
chore: update lock file
balazsorban44 Jun 1, 2023
395020c
Merge branch 'main' into feat/authjs-prisma
balazsorban44 Jun 1, 2023
70f2982
update lock file
balazsorban44 Jun 1, 2023
e362e8f
update adapter test suite
balazsorban44 Jun 1, 2023
da8007f
chore: allow manual release of any `@auth/*` package
balazsorban44 Jun 1, 2023
d7b9879
revert line changes
balazsorban44 Jun 1, 2023
909956f
revert line changes
balazsorban44 Jun 1, 2023
39ffb90
revert line changes
balazsorban44 Jun 1, 2023
050e484
fix syntax error
balazsorban44 Jun 1, 2023
18b8ae2
Merge branch 'main' into feat/authjs-prisma
balazsorban44 Jun 1, 2023
210375b
chore: re-add pnpm caching
balazsorban44 Jun 1, 2023
f177471
Merge branch 'main' into feat/authjs-prisma
balazsorban44 Jun 1, 2023
137572d
Merge branch 'main' into feat/authjs-prisma
balazsorban44 Jun 1, 2023
87b2ff9
Merge branch 'main' into feat/authjs-prisma
balazsorban44 Jun 1, 2023
b3ca695
tweak turbo
balazsorban44 Jun 1, 2023
21286ea
Merge branch 'main' into feat/authjs-prisma
balazsorban44 Jun 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix syntax error
  • Loading branch information
balazsorban44 committed Jun 1, 2023
commit 050e484a359d1f50168236de0b9979b3905302ed
2 changes: 1 addition & 1 deletion apps/dev/nextjs/pages/api/auth/[...nextauth].ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const authConfig: AuthConfig = {
tenantId: process.env.AZURE_AD_TENANT_ID,
}),
AzureB2C({ clientId: process.env.AZURE_B2C_ID, clientSecret: process.env.AZURE_B2C_SECRET, issuer: process.env.AZURE_B2C_ISSUER }),
BeyondIdentity({ clientId: process.env.BEYOND_IDENTITY_CLIENT_ID, clientSecret: process.env.BEYOND_IDENTITY_CLIENT_SECRET issuer: process.env.BEYOND_IDENTITY_ISSUER }),
BeyondIdentity({ clientId: process.env.BEYOND_IDENTITY_CLIENT_ID, clientSecret: process.env.BEYOND_IDENTITY_CLIENT_SECRET, issuer: process.env.BEYOND_IDENTITY_ISSUER }),
BoxyHQSAML({ issuer: "https://jackson-demo.boxyhq.com", clientId: "tenant=boxyhq.com&product=saml-demo.boxyhq.com", clientSecret: "dummy" }),
// Cognito({ clientId: process.env.COGNITO_ID, clientSecret: process.env.COGNITO_SECRET, issuer: process.env.COGNITO_ISSUER }),
Discord({ clientId: process.env.DISCORD_ID, clientSecret: process.env.DISCORD_SECRET }),
Expand Down