[AAE-3084] Add retrieve metadata option in upload widget (#5903)

* AAE-3084 Add retrieve metadata option to upload widget file menu

* AAE-3084 Fix rebasing issues

* AAE-3084 Fix behaviour on empty dropdown

* Update en.json

* AAE-3084 Fix en.json

Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
This commit is contained in:
Pablo Martinez Garcia
2020-08-10 12:57:30 +02:00
committed by GitHub
parent 83786bf271
commit aeff60a1b5
9 changed files with 266 additions and 11 deletions

View File

@@ -29,4 +29,10 @@ export interface FormFieldMetadata {
type: string;
};
responseVariable?: boolean;
menuOptions?: {
show?: boolean,
download?: boolean,
retrieveMetadata?: boolean,
remove?: boolean
};
}

View File

@@ -60,6 +60,8 @@ export class FormService {
executeOutcome = new Subject<FormOutcomeEvent>();
updateFormValuesRequested = new Subject<FormValues>();
constructor(private ecmModelService: EcmModelService,
private apiService: AlfrescoApiService,
protected logService: LogService) {