aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/moderation/moderation.component.ts
blob: b0f5eb2243cb86e546422413318bc117145fbc0f (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 
                                         




                                              
                                                    
                                

               
                                        



                                  
                                                                                                     
   
 
import { Component, OnInit } from '@angular/core'
import { ServerService } from '@app/core'

@Component({
  templateUrl: './moderation.component.html',
  styleUrls: [ './moderation.component.scss' ]
})
export class ModerationComponent implements OnInit {
  autoBlockVideosEnabled = false

  constructor (
    private serverService: ServerService
  ) { }

  ngOnInit (): void {
    this.serverService.getConfig()
      .subscribe(config => this.autoBlockVideosEnabled = config.autoBlacklist.videos.ofUsers.enabled)
  }
}