Skip to content

Instantly share code, notes, and snippets.

@CharlieGreenman
Created September 20, 2019 12:49
Show Gist options
  • Save CharlieGreenman/69189d14380b3b01fbff4fabc9bb195f to your computer and use it in GitHub Desktop.
Save CharlieGreenman/69189d14380b3b01fbff4fabc9bb195f to your computer and use it in GitHub Desktop.
ngOnInit() {
this.myForm = this.fb.group({
name: ['', Validators.required],
email: [
'',
[Validators.required, Validators.email],
ValidateEmailNotTaken.createValidator(this.signupService)
]
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment