mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 14:03:06 +00:00
69115: post master merge changes to workflow-action
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
import { autoserialize, inheritSerialization } from 'cerialize';
|
||||
import { mapsTo } from '../../cache/builders/build-decorators';
|
||||
import { WorkflowAction } from './workflow-action-object.model';
|
||||
import { NormalizedDSpaceObject } from '../../cache/models/normalized-dspace-object.model';
|
||||
|
||||
/**
|
||||
* A normalized model class for a WorkflowAction
|
||||
*/
|
||||
@mapsTo(WorkflowAction)
|
||||
@inheritSerialization(NormalizedDSpaceObject)
|
||||
export class NormalizedWorkflowAction extends NormalizedDSpaceObject<WorkflowAction> {
|
||||
/**
|
||||
* The workflow action's identifier
|
||||
*/
|
||||
@autoserialize
|
||||
id: string;
|
||||
|
||||
/**
|
||||
* The options available for this workflow action
|
||||
*/
|
||||
@autoserialize
|
||||
options: string[];
|
||||
}
|
@@ -1,19 +1,25 @@
|
||||
import { ResourceType } from '../../shared/resource-type';
|
||||
import { inheritSerialization, autoserialize } from 'cerialize';
|
||||
import { typedObject } from '../../cache/builders/build-decorators';
|
||||
import { DSpaceObject } from '../../shared/dspace-object.model';
|
||||
import { WORKFLOW_ACTION } from './workflow-action-object.resource-type';
|
||||
|
||||
/**
|
||||
* A model class for a WorkflowAction
|
||||
*/
|
||||
@typedObject
|
||||
@inheritSerialization(DSpaceObject)
|
||||
export class WorkflowAction extends DSpaceObject {
|
||||
static type = new ResourceType('workflowaction');
|
||||
static type = WORKFLOW_ACTION;
|
||||
|
||||
/**
|
||||
* The workflow action's identifier
|
||||
*/
|
||||
@autoserialize
|
||||
id: string;
|
||||
|
||||
/**
|
||||
* The options available for this workflow action
|
||||
*/
|
||||
@autoserialize
|
||||
options: string[];
|
||||
}
|
||||
|
@@ -0,0 +1,9 @@
|
||||
import { ResourceType } from '../../shared/resource-type';
|
||||
|
||||
/**
|
||||
* The resource type for WorkflowAction
|
||||
*
|
||||
* Needs to be in a separate file to prevent circular
|
||||
* dependencies in webpack.
|
||||
*/
|
||||
export const WORKFLOW_ACTION = new ResourceType('workflowaction');
|
Reference in New Issue
Block a user