Deskripsi:
- update version api
- hapus button test web push

No Issues
This commit is contained in:
amel
2024-11-21 17:06:42 +08:00
parent cef5079442
commit a8604bc57c
2 changed files with 1 additions and 37 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: "0.2.2", mode: "staging" }, { status: 200 });
return NextResponse.json({ success: true, version: "0.2.3", mode: "staging" }, { 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 });