mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
744 B
24 lines
744 B
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core';
|
|
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
|
|
|
|
@Component({
|
|
selector: 'gf-show-access-token-dialog',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
styleUrls: ['./show-access-token-dialog.scss'],
|
|
templateUrl: 'show-access-token-dialog.html',
|
|
standalone: false
|
|
})
|
|
export class ShowAccessTokenDialog {
|
|
public isCreateAccountButtonDisabled = true;
|
|
public disclaimerChecked = false;
|
|
|
|
public constructor(@Inject(MAT_DIALOG_DATA) public data: any) {}
|
|
|
|
public onChangeDislaimerChecked() {
|
|
this.disclaimerChecked = !this.disclaimerChecked;
|
|
}
|
|
|
|
public enableCreateAccountButton() {
|
|
this.isCreateAccountButtonDisabled = false;
|
|
}
|
|
}
|
|
|