This commit is contained in:
syuilo 2018-03-28 16:39:14 +09:00
parent 7d4d9dbaa6
commit 3d5cdb8d2d
237 changed files with 1661 additions and 1354 deletions

View file

@ -15,7 +15,7 @@ import User from '../models/user';
* schema:
* type: object
* properties:
* posts_count:
* postsCount:
* description: count of all posts of misskey
* type: number
* users_count:
@ -42,7 +42,7 @@ module.exports = params => new Promise(async (res, rej) => {
.count();
res({
posts_count: postsCount,
postsCount: postsCount,
users_count: usersCount
});
});