Sharkey/src/server/api/endpoints/get-online-users-count.ts

24 lines
429 B
TypeScript
Raw Normal View History

import { USER_ONLINE_THRESHOLD } from '@/const';
import { Users } from '@/models';
import { MoreThan } from 'typeorm';
2020-12-30 06:07:16 +02:00
import define from '../define';
export const meta = {
tags: ['meta'],
requireCredential: false as const,
params: {
}
};
export default define(meta, async () => {
const count = await Users.count({
lastActiveDate: MoreThan(new Date(Date.now() - USER_ONLINE_THRESHOLD))
2020-12-30 06:07:16 +02:00
});
return {
count
};
2020-12-30 06:07:16 +02:00
});