Restrict team owner assignment to admins
This commit is contained in:
@@ -47,7 +47,7 @@ export async function POST(request: Request) {
|
||||
const { name, ownerId } = body;
|
||||
|
||||
const teamId = uuid();
|
||||
const teamOwnerId = ownerId ?? auth.user.id;
|
||||
const teamOwnerId = ownerId && auth.user.isAdmin ? ownerId : auth.user.id;
|
||||
|
||||
const team = await createTeam(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user