aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+register/steps/register-step-about.component.ts
blob: b176ffa5907e1033260015507ee2861130bcf34d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Component, Input } from '@angular/core'
import { ServerService } from '@app/core'

@Component({
  selector: 'my-register-step-about',
  templateUrl: './register-step-about.component.html',
  styleUrls: [ './register-step-about.component.scss' ]
})
export class RegisterStepAboutComponent {
  @Input() requiresApproval: boolean
  @Input() videoUploadDisabled: boolean

  constructor (private serverService: ServerService) {

  }

  get instanceName () {
    return this.serverService.getHTMLConfig().instance.name
  }
}