Tee
Tee
Explore posts from servers
CDCloudflare Developers
Created by Tee on 4/3/2025 in #general-help
Delete object from r2 bucket
Hey guys i was going through the docs on how to delete an object from an r2 bucket and saw that the only option is to delete via wrangler I was hoping there would be a way to achieve this via http? I'm using r2 in my project (via an s3 API) and for each upload I store the details in a database, users can delete the stored files from the database and I also want to remove the object from r2 when a user deletes
2 replies
BABetter Auth
Created by Tee on 3/28/2025 in #help
Extending organization.create
Hey guys I'm trying to add something simple when creating an organization and was wondering if there was a way to do something like this
const response = await organization.create({
name: data.name,
slug: data.slug,
logo: ""
timezone: data.timezone,
});
const response = await organization.create({
name: data.name,
slug: data.slug,
logo: ""
timezone: data.timezone,
});
10 replies
CDCloudflare Developers
Created by Tee on 1/31/2025 in #workers-help
Issues with runtime variables and secrets
Hello guys I have a cloudflare worker app that's connected to a git repo and auto deploys the new changes whenever I push. But each time it does that I always need to add my database credentials from the dashboard while if I use wrangler I don't have to set it every time it just works am I doing something wrong?
6 replies
BABetter Auth
Created by Tee on 1/11/2025 in #help
Client hooks always return 404
Hey guys any idea why using the organization hooks return a 404? it works fine server side
const organizations = useListOrganizations();
const session = useSession();
const currOrg = useActiveOrganization();
const organizations = useListOrganizations();
const session = useSession();
const currOrg = useActiveOrganization();
GET /api/auth/use-active-organization?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite 404 in 1447ms
GET /api/auth/use-list-organizations?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite 404 in 724ms
GET /api/auth/use-session?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite 404 in 695ms
GET /api/auth/use-active-organization?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite 404 in 1447ms
GET /api/auth/use-list-organizations?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite 404 in 724ms
GET /api/auth/use-session?currentURL=http%3A%2F%2Flocalhost%3A3000%2Fgraphite 404 in 695ms
11 replies
BABetter Auth
Created by Tee on 12/31/2024 in #help
Is it possible to edit the core schema?
I've gone through the docs and could only find how to extend the core schema and edit tables or column names but in my setup i don't really need an email or emailVerified field is it possible to exclude these fields?
4 replies