Commits

Alexandre Vryghem authored 0fb9970734f
98211: Added button to my workflow task page
No tags

src/app/shared/mydspace-actions/claimed-task/abstract/advanced-claimed-task-actions-abstract.component.ts

Added
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 +}

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut