summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/federation/following.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/api/endpoints/federation/following.ts')
-rw-r--r--src/server/api/endpoints/federation/following.ts51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/server/api/endpoints/federation/following.ts b/src/server/api/endpoints/federation/following.ts
deleted file mode 100644
index 5b283581a6..0000000000
--- a/src/server/api/endpoints/federation/following.ts
+++ /dev/null
@@ -1,51 +0,0 @@
-import $ from 'cafy';
-import { ID } from '@/misc/cafy-id';
-import define from '../../define';
-import { Followings } from '@/models/index';
-import { makePaginationQuery } from '../../common/make-pagination-query';
-
-export const meta = {
- tags: ['federation'],
-
- requireCredential: false as const,
-
- params: {
- host: {
- validator: $.str
- },
-
- sinceId: {
- validator: $.optional.type(ID),
- },
-
- untilId: {
- validator: $.optional.type(ID),
- },
-
- limit: {
- validator: $.optional.num.range(1, 100),
- default: 10
- },
- },
-
- res: {
- type: 'array' as const,
- optional: false as const, nullable: false as const,
- items: {
- type: 'object' as const,
- optional: false as const, nullable: false as const,
- ref: 'Following',
- }
- },
-};
-
-export default define(meta, async (ps, me) => {
- const query = makePaginationQuery(Followings.createQueryBuilder('following'), ps.sinceId, ps.untilId)
- .andWhere(`following.followerHost = :host`, { host: ps.host });
-
- const followings = await query
- .take(ps.limit!)
- .getMany();
-
- return await Followings.packMany(followings, me, { populateFollowee: true });
-});