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

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

  getIdentifier () {
    return 'MyAccountBlocklistComponent'
  }
}