#152 Support for custom 'empty folder' template

- default background image for empty folders
- support for user-defined custom templates
- readme updated
This commit is contained in:
Denys Vuika
2016-06-07 14:31:51 +01:00
parent 4784740108
commit e0d8b1fe31
11 changed files with 106 additions and 3 deletions

View File

@@ -17,10 +17,12 @@
// note: contains only limited subset of available fields
// TODO: deprecated
export class FolderEntity {
items: DocumentEntity[];
}
// TODO: deprecated
export class DocumentEntity {
nodeRef: string;
nodeType: string;
@@ -52,6 +54,7 @@ export class DocumentEntity {
location: LocationEntity;
}
// TODO: deprecated
export class LocationEntity {
repositoryId: string;
site: string;
@@ -62,6 +65,7 @@ export class LocationEntity {
parent: LocationParentEntity;
}
// TODO: deprecated
export class LocationParentEntity {
nodeRef: string;
}