paricafe/src/server/api/endpoints/stats.ts

11 lines
198 B
TypeScript
Raw Normal View History

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