blob: 85665ea4f9b23aa95f2a24b3e9af3693905d7446 (
plain) (
tree)
|
|
import { Component, OnInit } from '@angular/core'
import { ServerService } from '@app/core'
@Component({
templateUrl: './moderation.component.html',
styleUrls: [ ]
})
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)
}
}
|