jormungandr-bite/src/server/api/endpoints/stats.ts

11 lines
196 B
TypeScript
Raw Normal View History

2018-06-15 19:40:53 -06:00
import Meta from '../../../models/meta';
2017-08-12 00:17:03 -06:00
/**
* Get the misskey's statistics
2017-08-12 00:17:03 -06:00
*/
2018-07-05 11:58:29 -06:00
export default () => new Promise(async (res, rej) => {
2018-06-15 19:40:53 -06:00
const meta = await Meta.findOne();
2017-08-12 00:17:03 -06:00
2018-06-15 19:40:53 -06:00
res(meta.stats);
2017-08-12 00:17:03 -06:00
});