upd: task

Deskripsi:
- remove anggota
- profil anggota

No Issues
This commit is contained in:
amel
2024-08-20 14:46:07 +08:00
parent f090af8f7d
commit e3b7379559
3 changed files with 136 additions and 8 deletions

View File

@@ -1,7 +1,6 @@
import { prisma } from "@/module/_global";
import { funGetUserByCookies } from "@/module/auth";
import _ from "lodash";
import moment from "moment";
import { NextResponse } from "next/server";
// ADD MEMBER TASK DIVISI
@@ -21,8 +20,6 @@ export async function POST(request: Request, context: { params: { id: string } }
},
});
console.log(member, idDivision)
if (data == 0) {
return NextResponse.json(
{
@@ -58,4 +55,56 @@ export async function POST(request: Request, context: { params: { id: string } }
console.log(error);
return NextResponse.json({ success: false, message: "Gagal menambah anggota tugas, coba lagi nanti", reason: (error as Error).message, }, { status: 500 });
}
}
}
// MENGELUARKAN ANGGOTA
export async function DELETE(request: Request, context: { params: { id: string } }) {
try {
const user = await funGetUserByCookies()
if (user.id == undefined) {
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 401 });
}
const { id } = context.params;
const { idUser } = (await request.json());
const data = await prisma.divisionProject.count({
where: {
id: id,
},
});
if (data == 0) {
return NextResponse.json(
{
success: false,
message: "Gagal, data tugas tidak ditemukan",
},
{ status: 404 }
);
}
console.log(id, idUser)
const del = await prisma.divisionProjectMember.deleteMany({
where: {
idUser: idUser,
idProject: id
}
})
return NextResponse.json(
{
success: true,
message: "Berhasil mengeluarkan anggota",
},
{ status: 200 }
);
} catch (error) {
console.log(error);
return NextResponse.json({ success: false, message: "Gagal mengeluarkan anggota, coba lagi nanti", reason: (error as Error).message, }, { status: 500 });
}
}