classesList.js 544 B

1234567891011121314151617
  1. /**
  2. * ПОЛУЧЕНИЕ СПИСКА КЛАССОВ, ИМЕЮЩИХСЯ В КОЛЛЕКЦИИ CURRIC
  3. * Copyright © 2019, А.М.Гольдин. Modified BSD License
  4. */
  5. "use strict";
  6. // Возвращает несортированный массив имен классов
  7. module.exports = async () => {
  8. try {
  9. let clList = [];
  10. let res = await dbFind("curric", {type: "class"});
  11. for (let currDoc of res) clList.push(currDoc.className);
  12. return JSON.stringify(clList);
  13. }
  14. catch(e) {return "[]";}
  15. };