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