mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user