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