summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/stats.ts
blob: ca11f670127e53717b079476777e4dc32183db60 (plain)
1
2
3
4
5
6
7
8
9
10
import Meta from '../../../models/meta';

/**
 * Get the misskey's statistics
 */
export default () => new Promise(async (res, rej) => {
	const meta = await Meta.findOne();

	res(meta.stats);
});