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

@Component({
  selector: 'my-signup-success',
  templateUrl: './signup-success.component.html',
  styleUrls: [ './signup-success.component.scss' ]
})
export class SignupSuccessComponent {
  @Input() requiresEmailVerification: boolean

  constructor (private serverService: ServerService) {

  }

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