Is there any way to create organization after user create hook?

Im getting UNAUTHORIZED error because im trying to create an organization for user with using user : { create : { after { } }} hook. Is there any way to avoid it?
3 Replies
rhitune
rhituneOP2d ago
@Ping @bekacru
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
}
}
});
bekacru
bekacru2d ago
since you have the user id, remove headers and pass userId in the body instead
body:{
name: //
//...
userId: user.id
}
body:{
name: //
//...
userId: user.id
}
rhitune
rhituneOP2d ago
oh okeyy thanks

Did you find this page helpful?