mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-02-24 07:45:26 +09:00
31 lines
630 B
TypeScript
31 lines
630 B
TypeScript
import define from '../../define.js';
|
|
import { getConnection } from 'typeorm';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
tags: ['admin'],
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async () => {
|
|
const stats = await
|
|
getConnection().query(`SELECT * FROM pg_indexes;`)
|
|
.then(recs => {
|
|
const res = [] as { tablename: string; indexname: string; }[];
|
|
for (const rec of recs) {
|
|
res.push(rec);
|
|
}
|
|
return res;
|
|
});
|
|
|
|
return stats;
|
|
});
|