rudeshark.net/src/server/api/endpoints/stats.ts

11 lines
198 B
TypeScript
Raw Normal View History

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