2021-08-19 07:55:45 -05:00
|
|
|
import define from '../../define';
|
|
|
|
import { Channels } from '@/models/index';
|
2020-08-18 08:44:21 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['channels'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: false,
|
2020-08-18 08:44:21 -05:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 08:44:21 -05:00
|
|
|
items: {
|
2022-01-18 07:27:10 -06:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2020-08-18 08:44:21 -05:00
|
|
|
ref: 'Channel',
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2020-08-18 08:44:21 -05:00
|
|
|
},
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2020-08-18 08:44:21 -05:00
|
|
|
|
2022-01-02 11:12:50 -06:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2020-08-18 08:44:21 -05:00
|
|
|
export default define(meta, async (ps, me) => {
|
|
|
|
const query = Channels.createQueryBuilder('channel')
|
|
|
|
.where('channel.lastNotedAt IS NOT NULL')
|
|
|
|
.orderBy('channel.lastNotedAt', 'DESC');
|
|
|
|
|
|
|
|
const channels = await query.take(10).getMany();
|
|
|
|
|
|
|
|
return await Promise.all(channels.map(x => Channels.pack(x, me)));
|
|
|
|
});
|