]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about.component.ts
Translated using Weblate (Persian)
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about.component.ts
CommitLineData
78f912ed 1import { Component } from '@angular/core'
7034b3c9 2import { ScreenService } from '@app/core'
78f912ed
C
3
4@Component({
5 selector: 'my-about',
41a676db 6 templateUrl: './about.component.html'
78f912ed
C
7})
8
9export class AboutComponent {
7034b3c9 10 constructor (
11 private screenService: ScreenService
12 ) { }
78f912ed 13
7034b3c9 14 get isBroadcastMessageDisplayed () {
15 return this.screenService.isBroadcastMessageDisplayed
16 }
78f912ed 17}