No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- "use strict";
-
- /**
- * Read the documentation (https://strapi.io/documentation/developer-docs/latest/concepts/services.html#core-services)
- * to customize this service
- */
-
- module.exports = {
- getId: async (params) => {
- const results = await strapi.query("session-data").find(params);
- let arrKeys = [];
- results.forEach((i) => {
- if (!arrKeys.includes(i["id"])) arrKeys.push(i["id"]);
- });
- return arrKeys;
- },
- };
|