[ADF-4409] ADF for Activiti Community - Be able to claim/release/complete task (#4677)

* Be able to claim/release/complete task for community
Be able to start a task/process
Fix unsubscribe on destroy

* Fix the construnctor
This commit is contained in:
Maurizio Vitale
2019-05-02 14:30:38 +02:00
committed by GitHub
parent 9298e6762f
commit e88e0d9b45
12 changed files with 62 additions and 41 deletions

View File

@@ -64,7 +64,7 @@ export class CompleteTaskDirective implements OnInit {
}
isAppValid(): boolean {
return this.appName && this.appName.length > 0;
return (this.appName && this.appName.length > 0) || (this.appName === '');
}
@HostListener('click')