2018-06-16 03:40:53 +02:00
|
|
|
import Meta from '../../../models/meta';
|
2017-08-12 08:17:03 +02:00
|
|
|
|
|
|
|
/**
|
2018-05-08 00:19:23 +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
|
|
|
});
|