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

11 lines
208 B
TypeScript
Raw Normal View History

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