mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-6310] Add a category in process definition model (#7439)
This commit is contained in:
committed by
GitHub
parent
28bdab1146
commit
131963f4ab
@@ -23,6 +23,8 @@ export class ProcessDefinitionCloud {
|
||||
appVersion: number;
|
||||
version: number;
|
||||
name: string;
|
||||
category: string;
|
||||
description: string;
|
||||
|
||||
constructor(obj?: any) {
|
||||
this.id = obj && obj.id || null;
|
||||
@@ -32,5 +34,7 @@ export class ProcessDefinitionCloud {
|
||||
this.formKey = obj && obj.formKey || null;
|
||||
this.version = obj && obj.version || 0;
|
||||
this.appVersion = obj && obj.appVersion || 0;
|
||||
this.category = obj && obj?.category || '';
|
||||
this.description = obj && obj?.description || '';
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user