summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/instances.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-07 18:11:20 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-07 18:11:20 +0900
commitc3140f57b99f9f11437279695b05ee3eccff41ca (patch)
treed3f3e30c509c54f7443dc7712479842c03ab5b35 /src/server/api/endpoints/instances.ts
parentImprove instance stats (diff)
downloadmisskey-c3140f57b99f9f11437279695b05ee3eccff41ca.tar.gz
misskey-c3140f57b99f9f11437279695b05ee3eccff41ca.tar.bz2
misskey-c3140f57b99f9f11437279695b05ee3eccff41ca.zip
連合しているインスタンスを一覧できるように
Diffstat (limited to 'src/server/api/endpoints/instances.ts')
-rw-r--r--src/server/api/endpoints/instances.ts51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/server/api/endpoints/instances.ts b/src/server/api/endpoints/instances.ts
deleted file mode 100644
index b7c686a353..0000000000
--- a/src/server/api/endpoints/instances.ts
+++ /dev/null
@@ -1,51 +0,0 @@
-import $ from 'cafy';
-import define from '../define';
-import Instance from '../../../models/instance';
-
-export const meta = {
- requireCredential: false,
-
- params: {
- limit: {
- validator: $.num.optional.range(1, 100),
- default: 30
- },
-
- offset: {
- validator: $.num.optional.min(0),
- default: 0
- },
-
- sort: {
- validator: $.str.optional.or('+notes|-notes'),
- }
- }
-};
-
-export default define(meta, (ps, me) => new Promise(async (res, rej) => {
- let _sort;
- if (ps.sort) {
- if (ps.sort == '+notes') {
- _sort = {
- notesCount: -1
- };
- } else if (ps.sort == '-notes') {
- _sort = {
- notesCount: 1
- };
- }
- } else {
- _sort = {
- _id: -1
- };
- }
-
- const instances = await Instance
- .find({}, {
- limit: ps.limit,
- sort: _sort,
- skip: ps.offset
- });
-
- res(instances);
-}));