anand248
Explore posts from serversBABetter Auth
•Created by anand248 on 3/5/2025 in #bug-reports
Performance of `auth.api.hasPermission` seem to be very slow
Do I need to create indexes in my sqlite database to improve it? [solved]
5 replies
BABetter Auth
•Created by anand248 on 12/15/2024 in #help
`autoSignInAfterVerification` is not working for me.
My config looks like -
When I click on link in URL, my email verification does get finished correctly, but I am not signed in . I have to go through sign in screen for that.
The url I get is
pages.dev/api/auth/verify-email?token=some-long-token&callbackURL=/
How can I customize callbackURL
? and how can I safely land user to that url as a signed in user?
I am on very latest version 1.0.20
6 replies
BABetter Auth
•Created by anand248 on 12/10/2024 in #help
organization plugin client is formatting the metadata json with escape
console.log("....data....", data);
await authOrganizationClient.update({
data: {
name: data.name,
slug: data.slug,
metadata: data.metadata ?? undefined,
},
organizationId: data.id,
});
data get logged with metadata correctly but in the DB it stores it like this
"{\"businessAddress\":\"14 xxx Drive\"}"
1 replies
BABetter Auth
•Created by anand248 on 12/7/2024 in #bug-reports
User is not able to ban user, even when he is admin of the org
getting {"message":"Only admins can access this endpoint","code":"ONLY_ADMINS_CAN_ACCESS_THIS_ENDPOINT"} , when client calls
await admin.banUser({ userId: values.userId });
4 replies
BABetter Auth
•Created by anand248 on 12/1/2024 in #bug-reports
organization.acceptInvitation is throwing exception on sqlite - d1
ERROR Error D1_ERROR: near "where": syntax error at offset 22: SQLITE_ERROR Better Auth
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at D1PreparedQuery.all (node_modules/src/d1/session.ts:194:16)
at withReturning (node_modules/better-auth/dist/adapters/drizzle.js:1:8808)
at Object.update (node_modules/better-auth/dist/adapters/drizzle.js:1:10079)
at s (node_modules/better-auth/dist/index.js:83:12739)
at Object.updateSession (node_modules/better-auth/dist/index.js:83:16442)
at Object.setActiveOrganization (node_modules/better-auth/dist/plugins.js:83:25734)
at node_modules/better-auth/dist/plugins.js:83:31460
2 replies
Vite plugin does not compile the commonjs module
Hey Team, I am developing an application using Yusuke's template
https://github.com/yusukebe/cloudflare-d1-drizzle-honox-starter
If you add any library which also comes with commonjs/nodejs module, it fails to load them . Everything works fine with
npx wrangler pages dev
though. Any idea, agains which repo, should I post this issue on Github3 replies
CDCloudflare Developers
•Created by anand248 on 10/13/2024 in #workers-help
Which library do you use to generate pdf at worker side?
I tried jspdf, pdfmake, but they are giving module related errors.
2 replies
CDCloudflare Developers
•Created by anand248 on 10/12/2024 in #workers-help
I am trying to add a new binding for R2 after deploying my application on cloudflare in wrangler.tom
, but my pages functions are not picking these newly added bindings and not showing up on settings tab. It doesn't allow me to edit it saying, this project's binding is managed by wrangler.toml, I did add R2 binding on my wrangler.toml. I think, due to this my c.env.MY_BUCKET is coming as undefined at run time.
2 replies
CDCloudflare Developers
•Created by anand248 on 9/29/2024 in #pages-help
Developing a new application using template - https://github.com/yusukebe/cloudflare-d1-drizzle-hono
I am adding auth flows using Lucia to above template which uses D1, Drizzle & Honox. I am using pages.
My major problems are around common js modules. I want to use "Resend" library to send emails. IT runs fine once deployed but locally when I run the application using "vite" it gives commonjs related errors, I am trying to fix them with Vite.config.ts and
@originjs/vite-plugin-commonjs
but no success till now.
Another option is to run the app using npx wrangler pages dev
but it gives error around D1 access. Did you experience same problems ?3 replies
CDCloudflare Developers
•Created by anand248 on 9/26/2024 in #pages-help
daisy ui styles not applying on cloudflare built deployment
I built cloudflare pages app (using this template https://github.com/yusukebe/cloudflare-d1-drizzle-honox-starter/blob/main/README.md ) , and added daisy UI. My tailwind css styles are being applied, but not daisy UI. any clue?
2 replies
CDCloudflare Developers
•Created by anand248 on 9/4/2024 in #workers-help
Since worker size limit is 1 MB, i reckon a typical web application must have multiple workers
Do you know any open source template which demonstrate how multiple workers sit along with single frontend react app. If it has sample auth setup , that'd be great.
5 replies
WWasp
•Created by anand248 on 8/18/2024 in #🙋questions
How to create seed data on fly.io postgres instance
I created a new fly io launch and want to create same set of seed data which I do locally using
wasp db seed
on fly.io's postgres instance. How can I achieve it ?5 replies
WWasp
•Created by anand248 on 8/11/2024 in #🙋questions
When we query any entity with child entities included, how to get types defined for those in client
Wasp version - latest 0.14
e.g.
query getStandard {
fn: import { getStandard } from "@src/standards/queries",
entities: [Order]
}
My query is actuall able to return child entitiy [orderRows] inside Order, how can I specify that in .wasp file ?
7 replies