Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor(fb: FormBuilder) {
this.form = fb.group({
[TYPE]: new FormControl('', Validators.required),
[QUALIFIER]: fb.array([]),
[PRIVATE]: new FormControl(true, Validators.required),
});
this.capabilities$ = Beans.get(MessageClient).request$(Topics.Providers).pipe(mapToBody());
}