Merge pull request 'QC Mobile: Pak jun dan Inno' (#20) from qc/1-dec-25 into staging
Reviewed-on: http://wibugit.wibudev.com/wibu/hipmi/pulls/20
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
||||
|
||||
## [1.5.19](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.18...v1.5.19) (2025-12-01)
|
||||
|
||||
## [1.5.18](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.17...v1.5.18) (2025-11-28)
|
||||
|
||||
## [1.5.17](https://wibugit.wibudev.com/wibu/hipmi/compare/v1.5.16...v1.5.17) (2025-11-24)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "hipmi",
|
||||
"version": "1.5.18",
|
||||
"version": "1.5.19",
|
||||
"private": true,
|
||||
"prisma": {
|
||||
"seed": "bun prisma/seed.ts"
|
||||
|
||||
@@ -114,7 +114,7 @@ async function DELETE(request: Request, context: { params: { id: string } }) {
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
try {
|
||||
if (data?.logoId != null) {
|
||||
@@ -134,7 +134,7 @@ async function DELETE(request: Request, context: { params: { id: string } }) {
|
||||
}
|
||||
}
|
||||
|
||||
if (data?.BusinessMaps) {
|
||||
if (data?.BusinessMaps !== null) {
|
||||
const pinId = data?.BusinessMaps?.pinId;
|
||||
|
||||
if (pinId) {
|
||||
@@ -172,24 +172,23 @@ async function DELETE(request: Request, context: { params: { id: string } }) {
|
||||
}
|
||||
}
|
||||
|
||||
const deletePortoMedsos = await prisma.portofolio_MediaSosial.delete({
|
||||
const deleteMap = await prisma.businessMaps.delete({
|
||||
where: {
|
||||
portofolioId: id,
|
||||
id: data?.BusinessMaps?.id,
|
||||
},
|
||||
});
|
||||
|
||||
const deleteMap = await prisma.businessMaps.delete({
|
||||
const deletePortoMedsos = await prisma.portofolio_MediaSosial.delete({
|
||||
where: {
|
||||
portofolioId: id,
|
||||
portofolioId: data?.id,
|
||||
},
|
||||
});
|
||||
|
||||
const deletePortofolio = await prisma.portofolio.delete({
|
||||
where: {
|
||||
id: id,
|
||||
id: data?.id,
|
||||
},
|
||||
});
|
||||
|
||||
} catch (error) {
|
||||
console.error("Error delete logo", error);
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ async function GET(request: Request) {
|
||||
if (category === "beranda") {
|
||||
fixData = await prisma.voting.findMany({
|
||||
orderBy: {
|
||||
updatedAt: "desc",
|
||||
awalVote: "asc"
|
||||
},
|
||||
where: {
|
||||
voting_StatusId: "1",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[
|
||||
{
|
||||
"id": 1,
|
||||
"name": "Software Developer"
|
||||
"name": "Software Development"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
|
||||
Reference in New Issue
Block a user