|
|
@ -11,8 +11,7 @@ pluginsController.get = async function (req, res) {
|
|
|
|
const [compatible, all, trending] = await Promise.all([
|
|
|
|
const [compatible, all, trending] = await Promise.all([
|
|
|
|
getCompatiblePlugins(),
|
|
|
|
getCompatiblePlugins(),
|
|
|
|
getAllPlugins(),
|
|
|
|
getAllPlugins(),
|
|
|
|
Promise.resolve([]),
|
|
|
|
plugins.listTrending(),
|
|
|
|
// plugins.listTrending(),
|
|
|
|
|
|
|
|
]);
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
|
|
const compatiblePkgNames = compatible.map(pkgData => pkgData.name);
|
|
|
|
const compatiblePkgNames = compatible.map(pkgData => pkgData.name);
|
|
|
|