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

11 lines
208 B
TypeScript
Raw Normal View History

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