Merge pull request #49 from Alfresco/dev-denys-ACA-960

[ACA-960] location link component
This commit is contained in:
Cilibiu Bogdan
2017-11-14 10:30:53 +02:00
committed by GitHub
11 changed files with 118 additions and 23 deletions

View File

@@ -109,9 +109,10 @@
<data-column
key="path"
title="APP.DOCUMENT_LIST.COLUMNS.LOCATION"
type="location"
format="/personal-files">
title="APP.DOCUMENT_LIST.COLUMNS.LOCATION">
<ng-template let-context>
<app-location-link [context]="context"></app-location-link>
</ng-template>
</data-column>
<data-column

View File

@@ -24,6 +24,7 @@ import { CoreModule, AlfrescoApiService } from 'ng2-alfresco-core';
import { CommonModule } from '../../common/common.module';
import { ContentManagementService } from '../../common/services/content-management.service';
import { LocationLinkComponent } from '../location-link/location-link.component';
import { RecentFilesComponent } from './recent-files.component';
describe('RecentFiles Routed Component', () => {
@@ -54,6 +55,7 @@ describe('RecentFiles Routed Component', () => {
CommonModule
],
declarations: [
LocationLinkComponent,
RecentFilesComponent
]
})