30 lines
696 B
TypeScript
30 lines
696 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { RelayService } from '@/core/RelayService.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
inbox: { type: 'string' },
|
|
},
|
|
required: ['inbox'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
private relayService: RelayService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
return await this.relayService.removeRelay(ps.inbox);
|
|
});
|
|
}
|
|
}
|