aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+signup/+register/steps/register-step-about.component.ts
blob: 9a09410167b4f4e5c22ee4dea58c6843c6108259 (plain) (tree)


















                                                           
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() videoUploadDisabled: boolean

  constructor (private serverService: ServerService) {

  }

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