aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-blocklist/my-account-blocklist.component.ts
blob: 8b9819ba23d5ae9db1582d640a3a684e7ead1d5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Component } from '@angular/core'
import { BlocklistComponentType, GenericAccountBlocklistComponent } from '@app/shared/shared-moderation'

@Component({
  selector: 'my-account-blocklist',
  templateUrl: '../../shared/shared-moderation/account-blocklist.component.html'
})
export class MyAccountBlocklistComponent extends GenericAccountBlocklistComponent {
  mode = BlocklistComponentType.Account

  getIdentifier () {
    return 'MyAccountBlocklistComponent'
  }
}