26 lines
517 B
JavaScript
26 lines
517 B
JavaScript
|
|
||
|
/* Top Level Vars*/
|
||
|
const email = 'bdaneels@ad.ua.ac.be'
|
||
|
const password = 'Heideggershut18891'
|
||
|
const webpage = 'https://sisaweb.uantwerpen.be'
|
||
|
const runId = 'bd'
|
||
|
const dasbhoardInschrijvingenURL = 'https://app.sisaweb.uantwerpen.be/psc/csprd_3/EMPLOYEE/SA/c/QQ_INSCHRIJVINGEN.QQ_OVERZ_ING_STDL.GBL?NavColl=true'
|
||
|
|
||
|
|
||
|
/* Dashboard Form Vars*/
|
||
|
|
||
|
const career = 'BACA'
|
||
|
const program = 'B0011'
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
module.exports = {
|
||
|
email,
|
||
|
password,
|
||
|
webpage,
|
||
|
runId,
|
||
|
dasbhoardInschrijvingenURL,
|
||
|
career,
|
||
|
program
|
||
|
};
|