[AAE-4504] FE - [ADF] Fetch destination Folder Path from a static path (#6557)

* [AAE4504] FE - [ADF] Fetch destination Folder Path from a static path

* * Added condition to check destination folder path

* * Added typescript way to check

* Fix attach file from local e2e

* * Added unit tests to the recent changes

* * Fixed comments

Co-authored-by: Cristina Jalba <cristina.jalba@ness.com>
This commit is contained in:
siva kumar
2021-02-05 15:15:04 +05:30
committed by GitHub
parent 3946fc7464
commit 301df3dcb8
4 changed files with 92 additions and 9 deletions

View File

@@ -19,10 +19,17 @@
import { FormFieldSelectedFolder } from './form-field-selected-folder';
export interface DestinationFolderPath {
id?: string;
name?: string;
type: string;
value: string;
}
export interface FormFieldFileSource {
metadataAllowed: boolean;
name: string;
selectedFolder: FormFieldSelectedFolder;
serviceId: string;
destinationFolderPath: string;
destinationFolderPath: DestinationFolderPath;
}