fix(remove-all-followings): invalid DI symbol problem
This commit is contained in:
parent
ee45180539
commit
a30be3e35e
@ -16,7 +16,6 @@ export const meta = {
|
||||
|
||||
requireCredential: true,
|
||||
requireAdmin: true,
|
||||
secure: true,
|
||||
kind: 'write:admin:federation',
|
||||
|
||||
errors: {
|
||||
@ -42,7 +41,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||
@Inject(DI.usersRepository)
|
||||
private usersRepository: UsersRepository,
|
||||
|
||||
@Inject(DI.notesRepository)
|
||||
@Inject(DI.followingsRepository)
|
||||
private followingsRepository: FollowingsRepository,
|
||||
|
||||
@Inject(DI.instancesRepository)
|
||||
@ -59,10 +58,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||
}
|
||||
|
||||
const followings = await this.followingsRepository.findBy({
|
||||
followerHost: ps.host,
|
||||
followerHost: instance.host,
|
||||
});
|
||||
const followers = await this.followingsRepository.findBy({
|
||||
followeeHost: ps.host,
|
||||
followeeHost: instance.host,
|
||||
});
|
||||
|
||||
const followingPairs = await Promise.all(followings.map(f => Promise.all([
|
||||
|
Loading…
Reference in New Issue
Block a user