Default meilisearch data response + linting + prettyfier

This commit is contained in:
PrivateGER 2023-05-26 10:55:51 +02:00 committed by PrivateGER
parent 5dd106e956
commit a9889721ec
3 changed files with 13 additions and 6 deletions

View file

@ -85,6 +85,10 @@ async function meilisearchStatus() {
if (meilisearch) {
return meilisearch.serverStats();
} else {
return null;
return {
health: "unconfigured",
size: 0,
indexed_count: 0,
};
}
}

View file

@ -1,8 +1,8 @@
import type Bull from "bull";
import { queueLogger } from "../../logger.js";
import { Notes } from "@/models/index.js";
import { MoreThan } from "typeorm";
import {queueLogger} from "../../logger.js";
import {Notes} from "@/models/index.js";
import {MoreThan} from "typeorm";
import {index} from "@/services/note/create.js";
import {Note} from "@/models/entities/note.js";
import meilisearch from "../../../db/meilisearch.js";

View file

@ -34,7 +34,6 @@ export default define(meta, paramDef, async () => {
total: fsStats[0].size,
used: fsStats[0].used,
},
meilisearch: meilisearchStats,
};
});
@ -42,6 +41,10 @@ async function meilisearchStatus() {
if (meilisearch) {
return meilisearch.serverStats();
} else {
return null;
return {
health: "unconfigured",
size: 0,
indexed_count: 0,
};
}
}