Merge branch 'staging' into nico/push-stg

This commit is contained in:
2025-06-26 11:19:54 +08:00
committed by GitHub
6 changed files with 181 additions and 5 deletions

View File

@@ -3,7 +3,6 @@ import { Context } from "elysia";
export default async function grafikKepuasanDelete(context: Context) {
const uuid = context.params?.uuid;
if (!uuid) {
return {
success: false,

View File

@@ -4,7 +4,6 @@ export default async function grafikKepuasanFindUnique(request: Request) {
const url = new URL(request.url);
const pathSegments = url.pathname.split('/');
const uuid = pathSegments[pathSegments.length - 1];
if (!uuid) {
return Response.json({
success: false,