[ADF-4550] Form Cloud - Be able to upload a file on the content taken from the process-storage (#4807)

* * Process-storage

* * Used jsapiServcie

* Be able to upload a file on the content with the createNode api

* Fix lint

* Refactor

* * Removed needless method.

* Remove useless method

* Add properties type
This commit is contained in:
Maurizio Vitale
2019-06-05 15:46:28 +01:00
committed by Eugenio Romano
parent 0684098f60
commit 67485daece
5 changed files with 41 additions and 33 deletions

View File

@@ -23,3 +23,16 @@ export class TaskVariableCloud {
this.value = obj.value || null;
}
}
export class ProcessStorageCloudModel {
nodeId: string;
path: string;
type: string;
constructor(obj) {
this.nodeId = obj.nodeId || null;
this.path = obj.path || null;
this.type = obj.type || null;
}
}