feat : portal.html

This commit is contained in:
unknown
2026-06-11 10:21:16 +07:00
parent a4465933fa
commit 4e221e0bf1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ app.use(express.static('ui'));
// Mengarahkan pengguna yang mengakses URL kosong langsung ke index.html
app.get('/', (req, res) => {
res.redirect('/index.html');
res.redirect('/portal.html');
});
// Rute rahasia sementara untuk mengunduh database asli dari server publik Coolify
+1 -1
View File
@@ -177,7 +177,7 @@
const json_result = await http_response.json();
if (!http_response.ok) throw new Error(json_result.error || 'Gagal menarik data dari server.');
muat_data_ke_tabel_admin(json_result);
} catch (error_sistem) {