diff options
author | Minteck <contact@minteck.org> | 2023-02-23 19:34:56 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2023-02-23 19:34:56 +0100 |
commit | 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 (patch) | |
tree | 75be5fba4368472fb11c8015aee026b2b9a71888 /school/node_modules/pronote-api/src/cas/index.js | |
parent | 8cc1f13c17fa2fb5a4410542d39e650e02945634 (diff) | |
download | pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.gz pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.tar.bz2 pluralconnect-3d1cd02f27518f1a04374c7c8320cd5d82ede6e9.zip |
Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated)
Diffstat (limited to 'school/node_modules/pronote-api/src/cas/index.js')
-rw-r--r-- | school/node_modules/pronote-api/src/cas/index.js | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/school/node_modules/pronote-api/src/cas/index.js b/school/node_modules/pronote-api/src/cas/index.js deleted file mode 100644 index e893f3a..0000000 --- a/school/node_modules/pronote-api/src/cas/index.js +++ /dev/null @@ -1,31 +0,0 @@ -/* 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); -} - |