Tee
Tee
Explore posts from servers
BABetter Auth
Created by Tee on 3/28/2025 in #help
Extending organization.create
Okay thanks so I can only use the database hooks?
10 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
no problem man
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
so same origin
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
yeah my backend is in next
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
it's pretty fast for me tho so you could try ig
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
i mean middleware always runs anyways so it will need to get the session with each req
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
its the same thing?
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
follow that
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
depending on your nextjs version
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
got it from the better-auth docs too
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
midleware runs on the edge so if youre using something like prisma it may not work but the snippet i sent works for me
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
thats how i handle mine
26 replies
BABetter Auth
Created by Henrik on 3/13/2025 in #help
Handle check email verified
const sessionRes = await fetch(
`${request.nextUrl.origin}/api/auth/get-session`,
{
headers: {
cookie: request.headers.get("cookie") || "",
},
},
);

const session: Session = sessionRes.ok ? await sessionRes.json() : null;
const isVerified = session?.user.emailVerified;
const sessionRes = await fetch(
`${request.nextUrl.origin}/api/auth/get-session`,
{
headers: {
cookie: request.headers.get("cookie") || "",
},
},
);

const session: Session = sessionRes.ok ? await sessionRes.json() : null;
const isVerified = session?.user.emailVerified;
26 replies
CDCloudflare Developers
Created by Tee on 1/31/2025 in #workers-help
Issues with runtime variables and secrets
Thank you so much i specified keep_vars and it works now
6 replies
CDCloudflare Developers
Created by Tee on 1/31/2025 in #workers-help
Issues with runtime variables and secrets
No description
6 replies
BABetter Auth
Created by Tee on 1/11/2025 in #help
Client hooks always return 404
thank you so much
11 replies
BABetter Auth
Created by Tee on 1/11/2025 in #help
Client hooks always return 404
it works!!
11 replies
BABetter Auth
Created by Tee on 1/11/2025 in #help
Client hooks always return 404
GET /api/auth/get-session 200 in 306ms
GET /api/auth/organization/get-full-organization 401 in 344ms
GET /api/auth/get-session?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite%2Ftags 200 in 773ms
GET /api/auth/organization/list?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite%2Ftags 200 in 1751ms
GET /api/auth/organization/get-full-organization?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite%2Ftags 200
GET /api/auth/get-session 200 in 306ms
GET /api/auth/organization/get-full-organization 401 in 344ms
GET /api/auth/get-session?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite%2Ftags 200 in 773ms
GET /api/auth/organization/list?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite%2Ftags 200 in 1751ms
GET /api/auth/organization/get-full-organization?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite%2Ftags 200
11 replies
BABetter Auth
Created by Tee on 1/11/2025 in #help
Client hooks always return 404
this is in /lib/auth/client
11 replies