mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-05 08:14:12 +09:00
@ -0,0 +1,35 @@
|
||||
import $ from 'cafy';
|
||||
import define from '../../../define';
|
||||
import { ID } from '@/misc/cafy-id';
|
||||
import { convertLog } from '@/services/chart/core';
|
||||
import { perUserNotesChart } from '@/services/chart/index';
|
||||
|
||||
export const meta = {
|
||||
tags: ['charts', 'users', 'notes'],
|
||||
|
||||
params: {
|
||||
span: {
|
||||
validator: $.str.or(['day', 'hour']),
|
||||
},
|
||||
|
||||
limit: {
|
||||
validator: $.optional.num.range(1, 500),
|
||||
default: 30,
|
||||
},
|
||||
|
||||
offset: {
|
||||
validator: $.optional.nullable.num,
|
||||
default: null,
|
||||
},
|
||||
|
||||
userId: {
|
||||
validator: $.type(ID),
|
||||
}
|
||||
},
|
||||
|
||||
res: convertLog(perUserNotesChart.schema),
|
||||
};
|
||||
|
||||
export default define(meta, async (ps) => {
|
||||
return await perUserNotesChart.getChart(ps.span as any, ps.limit!, ps.offset ? new Date(ps.offset) : null, ps.userId);
|
||||
});
|
Reference in New Issue
Block a user