aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-blocklist/my-account-server-blocklist.component.ts
blob: cfaba1c7b4959f425c83bd02a42978b355cd25cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                                                               


                                          

                                                                                                                               
  

                                                                                        
 


                                              
 
import { Component } from '@angular/core'
import { GenericServerBlocklistComponent, BlocklistComponentType } from '@app/shared/blocklist'

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

  getIdentifier () {
    return 'MyAccountServerBlocklistComponent'
  }
}