]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-blocklist/my-account-blocklist.component.ts
Add Podcast RSS feeds (#5487)
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-blocklist / my-account-blocklist.component.ts
CommitLineData
22839330 1import { Component } from '@angular/core'
67ed6552 2import { BlocklistComponentType, GenericAccountBlocklistComponent } from '@app/shared/shared-moderation'
af5767ff
C
3
4@Component({
5 selector: 'my-account-blocklist',
67ed6552 6 templateUrl: '../../shared/shared-moderation/account-blocklist.component.html'
af5767ff 7})
22839330
RK
8export class MyAccountBlocklistComponent extends GenericAccountBlocklistComponent {
9 mode = BlocklistComponentType.Account
af5767ff 10
8e11a1b3
C
11 getIdentifier () {
12 return 'MyAccountBlocklistComponent'
13 }
af5767ff 14}