Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
public onIntentRegister(): void {
const command: IntentRegisterCommand = {
intent: {
type: this.form.get(TYPE).value,
qualifier: SciParamsEnterComponent.toParams(this.form.get(QUALIFIER) as FormArray),
},
};
Beans.get(MessageClient).publish$(Topics.RegisterIntent, command).subscribe();
}