blob: 44dd11c47e79296526f6e68c8cb82602a2826f58 (
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 {
const serverConfig = this.serverService.getHTMLConfig()
this.autoBlockVideosEnabled = serverConfig.autoBlacklist.videos.ofUsers.enabled
}
}
|