Deskripsi:
- fix api fitur divisi yg di nonaktifkan

No issues
This commit is contained in:
amel
2025-03-04 12:49:58 +08:00
parent 6aee5f8055
commit db118fe707
8 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ import { NextResponse } from "next/server";
export async function GET(request: Request) {
try {
return NextResponse.json({ success: true, version: "1.2.4", tahap: "beta", update: "-tampilan login dashboard, -tampilan log user pada dashboard developer" }, { status: 200 });
return NextResponse.json({ success: true, version: "1.2.5", tahap: "beta", update: "-fix api fitur divisi non aktif" }, { status: 200 });
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, version: "Gagal mendapatkan version, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });