From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Feb 2023 19:34:56 +0100 Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated) --- .../node_modules/pronote-api/src/cas/index.js | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 includes/external/school/node_modules/pronote-api/src/cas/index.js (limited to 'includes/external/school/node_modules/pronote-api/src/cas/index.js') diff --git a/includes/external/school/node_modules/pronote-api/src/cas/index.js b/includes/external/school/node_modules/pronote-api/src/cas/index.js new file mode 100644 index 0000000..e893f3a --- /dev/null +++ b/includes/external/school/node_modules/pronote-api/src/cas/index.js @@ -0,0 +1,31 @@ +/* eslint-disable array-element-newline */ + +const find = require('./find'); + +const CAS = [ + 'ac-besancon', 'ac-bordeaux', 'ac-bordeaux2', 'ac-caen', 'ac-clermont', 'ac-dijon', + 'ac-grenoble', 'ac-lille', 'ac-limoges', 'ac-lyon', 'ac-montpellier', + 'ac-nancy-metz', 'ac-nantes', 'ac-orleans-tours', 'ac-poitiers', + 'ac-reims', 'ac-rouen', 'ac-strasbourg', 'ac-toulouse', + + 'agora06', 'arsene76', 'atrium-sud', + + 'haute-garonne', 'hdf', 'iledefrance', 'seine-et-marne', 'somme', 'eure-normandie', + 'parisclassenumerique', 'ljr-munich', + + 'toutatice', 'laclasse', 'lyceeconnecte', 'portail-famille', 'cybercolleges42', + 'ac-valdoise', 'ac-lille2', 'moncollege-essonne', 'monbureaunumerique-educonnect', + + 'none' +]; + +module.exports = { + getCAS: find, + list: CAS +}; + +for (const cas of CAS) { + // eslint-disable-next-line node/global-require + module.exports[cas] = require('./' + cas); +} + -- cgit