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

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

  getIdentifier () {
    return 'MyAccountBlocklistComponent'
  }
}