-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservices-config.js
57 lines (56 loc) · 2.11 KB
/
services-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Overview of hard coded data about services - all references point to these objects
// Unique identifier is the 'service' key
function getServicesList() {
return [
{
service:"AMS",
title:"AMS – Registratie",
description:"Registratieplatform voor analoge dragers.",
link_info:"detail#ams",
link_service:"http://registratie.viaa.be",
img:"/public/assets/ams.svg",
img_alt:"AMS icon",
available: mijnVIAA.isServiceAvailable("AMS"),
},
{
service:"ZEN",
title:"VIAA support",
description:"Handleidingen om u te helpen met VIAA services. Hier kunt u ook VIAA contacteren met vragen of problemen.",
link_info:"detail#zen",
link_service:"https://viaa.zendesk.com/hc/nl",
img:"/public/assets/zendesk.svg",
alt:"ZEN icon",
available: true,
},
{
service:"MAM",
title:"MAM – Archief",
description:"Platform om audiovisueel materiaal te beheren.",
link_info:"detail#mam",
link_service:"https://archief.viaa.be/",
img:"/public/assets/mam.svg",
alt:"MAM icon",
available: mijnVIAA.isServiceAvailable("MAM"),
},
{
service:"DBS",
title:"DBS – Contracten",
description:"Beheren van online documenten zoals contracten en Service Agreements.",
link_info:"detail#dbs",
link_service:"https://contract.viaa.be/",
img:"/public/assets/avo.svg",
alt:"DBS icon",
available: mijnVIAA.isServiceAvailable("DBS"),
},
{
service:"FTP",
title:"FTP – Bestanden",
description:"Downloaden van bestanden die geëxporteerd zijn.",
link_info:"detail#ftp",
link_service:"ftp://ftp.viaa.be",
img:"/public/assets/ftp.svg",
alt:"FTP icon",
available: mijnVIAA.isServiceAvailable("FTP"),
}
];
}