blob: b544c2a97905ab4b76daecc7fdc34c66ef96dbe3 (
plain) (
tree)
|
|
import { Component } from '@angular/core'
import { UserRight } from '@shared/models'
import { AuthService } from '@app/core'
@Component({
templateUrl: './system.component.html',
styleUrls: [ './system.component.scss' ]
})
export class SystemComponent {
constructor (private auth: AuthService) {}
hasLogsRight () {
return this.auth.getUser().hasRight(UserRight.MANAGE_LOGS)
}
hasJobsRight () {
return this.auth.getUser().hasRight(UserRight.MANAGE_JOBS)
}
hasDebugRight () {
return this.auth.getUser().hasRight(UserRight.MANAGE_DEBUG)
}
}
|