mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { ProjectModel } from "@schema/ProjectSchema";
|
|
import { TeamMemberModel } from "@schema/TeamMemberSchema";
|
|
import { UserModel } from "@schema/UserSchema";
|
|
import { UserSettingsModel } from "@schema/UserSettings";
|
|
|
|
export default defineEventHandler(async event => {
|
|
|
|
const userData = getRequestUser(event);
|
|
if (!userData?.logged) return setResponseStatus(event, 400, 'NotLogged');
|
|
|
|
const currentActiveProject = await UserSettingsModel.findOne({ user_id: userData.id });
|
|
if (!currentActiveProject) return setResponseStatus(event, 400, 'You need to select a project');
|
|
|
|
const project_id = currentActiveProject.active_project_id;
|
|
|
|
const project = await ProjectModel.findById(project_id);
|
|
if (!project) return setResponseStatus(event, 400, 'Project not found');
|
|
|
|
if (project.owner.toString() != userData.id) {
|
|
return setResponseStatus(event, 400, 'You are not the owner');
|
|
}
|
|
|
|
const { name } = await readBody(event);
|
|
|
|
if (name.length == 0) return setResponseStatus(event, 400, 'name is required');
|
|
|
|
project.name = name;
|
|
await project.save();
|
|
|
|
return { ok: true };
|
|
|
|
}); |