39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import type { ExternalSystem } from '../types/external-system.types'
|
|
|
|
export const dummyExternalSystems: ExternalSystem[] = [
|
|
{
|
|
id: 'ext-001',
|
|
code: 'KOPKB-PORTAL',
|
|
name: 'Portal Ahli KOPKB',
|
|
description:
|
|
'Sistem utama keahlian Koperasi Permodalan Kelantan Berhad untuk semakan dividen, penyata dan maklumat ahli.',
|
|
url: 'https://mykopkb.koppkb.com',
|
|
icon: 'Users',
|
|
is_active: true,
|
|
starts_at: '2026-01-01T00:00:00+08:00',
|
|
ends_at: null,
|
|
opens_in_new_tab: true,
|
|
contact_email: 'sokongan@koppkb.com',
|
|
notes: 'Log masuk menggunakan e-mel berdaftar ahli KOPKB.',
|
|
created_at: '2026-01-15T09:00:00+08:00',
|
|
updated_at: '2026-06-01T14:30:00+08:00',
|
|
},
|
|
{
|
|
id: 'ext-002',
|
|
code: 'AGM-VOTE',
|
|
name: 'Sistem Pengundian AGM',
|
|
description:
|
|
'Platform pengundian dalam talian untuk Mesyuarat Agung Tahunan. Hanya tersedia semasa tempoh pengundian.',
|
|
url: 'https://e-vote.erahn.com.my/login',
|
|
icon: 'Vote',
|
|
is_active: true,
|
|
starts_at: '2026-05-01T08:00:00+08:00',
|
|
ends_at: null,
|
|
opens_in_new_tab: true,
|
|
contact_email: 'agm@koppkb.com',
|
|
notes: 'Sila lengkapkan profil sebelum mengundi.',
|
|
created_at: '2026-05-20T10:00:00+08:00',
|
|
updated_at: '2026-06-28T11:15:00+08:00',
|
|
},
|
|
]
|