Commits
Alexandre Vryghem authored 0fb9970734f
1 + | import { Component } from '@angular/core'; |
2 + | import { ClaimedTaskActionsAbstractComponent } from './claimed-task-actions-abstract.component'; |
3 + | |
4 + | /** |
5 + | * Abstract component for rendering an advanced claimed task's action |
6 + | * To create a child-component for a new option: |
7 + | * - Set the "option" of the component |
8 + | * - Add a @rendersWorkflowTaskOption annotation to your component providing the same enum value |
9 + | * - Optionally overwrite createBody if the request body requires more than just the option |
10 + | */ |
11 + | @Component({ |
12 + | selector: 'ds-advanced-claimed-task-action-abstract', |
13 + | template: '' |
14 + | }) |
15 + | export abstract class AdvancedClaimedTaskActionsAbstractComponent extends ClaimedTaskActionsAbstractComponent { |
16 + | } |