rhitune
rhitune
BABetter Auth
Created by rhitune on 4/2/2025 in #help
Is there any way to create organization after user create hook?
thanks
7 replies
BABetter Auth
Created by rhitune on 4/2/2025 in #help
Is there any way to create organization after user create hook?
oh okeyy
7 replies
BABetter Auth
Created by Kelvin on 4/2/2025 in #help
Is it normal for getfullorg to have so many API calls?
No probably because your components rerendering
3 replies
BABetter Auth
Created by rhitune on 4/2/2025 in #help
Is there any way to create organization after user create hook?
databaseHooks: {
user: {
create: {
after: async (user) => {
try {
// Generate a slug from user's name or email
const userName = user.name || user.email?.split('@')[0] || 'Default';
const slug = `${userName.toLowerCase().replace(/[^a-z0-9]/g, '-')}-${Date.now().toString().slice(-6)}`;

// Create a default organization for the user
const organization = await auth.api.createOrganization({
headers: await headers(),
body: {
name: `${userName} Organization`,
slug: slug,
logo: 'https://ticketfa.st/logo.png',
metadata: {
createdAt: new Date().toISOString(),
createdBy: user.id,
isDefault: true
}
}
});
databaseHooks: {
user: {
create: {
after: async (user) => {
try {
// Generate a slug from user's name or email
const userName = user.name || user.email?.split('@')[0] || 'Default';
const slug = `${userName.toLowerCase().replace(/[^a-z0-9]/g, '-')}-${Date.now().toString().slice(-6)}`;

// Create a default organization for the user
const organization = await auth.api.createOrganization({
headers: await headers(),
body: {
name: `${userName} Organization`,
slug: slug,
logo: 'https://ticketfa.st/logo.png',
metadata: {
createdAt: new Date().toISOString(),
createdBy: user.id,
isDefault: true
}
}
});
7 replies
BABetter Auth
Created by rhitune on 4/2/2025 in #help
Is there any way to create organization after user create hook?
@Ping @bekacru
7 replies
BABetter Auth
Created by Karan on 3/30/2025 in #help
Any way to get cookies from client signIn methods when used as server action?
read docs pls
6 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
@JWW
14 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
ill switch to client side session
14 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
thats why
14 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
layout not rerendering
14 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
export default async function MainLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {

const session = await auth.api.getSession({ headers: await headers()})

return (
<>
<Header session={session} />
<main className="container mx-auto">
{children}
<Footer />
</main>
</>
);
}
export default async function MainLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {

const session = await auth.api.getSession({ headers: await headers()})

return (
<>
<Header session={session} />
<main className="container mx-auto">
{children}
<Footer />
</main>
</>
);
}
This is my code
14 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
because you using server rendered layout and client side header component
14 replies
BABetter Auth
Created by Furkan Özay on 3/23/2025 in #help
onApiError custom error page
cözdün mü
23 replies
BABetter Auth
Created by JWW on 3/27/2025 in #help
SignOut function doesn't immediately re-invoke session change
window.location.reload() should be work Im getting same issue btw if i find a better way i will write it
14 replies
BABetter Auth
Created by rhitune on 3/28/2025 in #help
.cursor/rule For Better-Auth
Are you planning to do this? If you don't plan to, I am thinking of doing it. I can share it with you and you can put it in the doc.
5 replies
BABetter Auth
Created by rhitune on 3/26/2025 in #help
inferAdditionalFields doesnt work?
thanks sir
6 replies
BABetter Auth
Created by rhitune on 3/26/2025 in #help
inferAdditionalFields doesnt work?
worked
6 replies
BABetter Auth
Created by rhitune on 3/26/2025 in #help
inferAdditionalFields doesnt work?
let me try
6 replies
BABetter Auth
Created by rhitune on 3/26/2025 in #help
inferAdditionalFields doesnt work?
@bekacru Can you help me please?
6 replies