mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
[ADF-4868] [APS-1] adf-content-node-selector seems broken when we upload from External Alfresco content service (#5078)
This commit is contained in:
parent
b22a23a338
commit
c2af8a23f0
@ -19,15 +19,21 @@ import { Injectable } from '@angular/core';
|
|||||||
import {
|
import {
|
||||||
AlfrescoApiCompatibility,
|
AlfrescoApiCompatibility,
|
||||||
ContentApi,
|
ContentApi,
|
||||||
Core
|
Core,
|
||||||
|
Node
|
||||||
} from '@alfresco/js-api';
|
} from '@alfresco/js-api';
|
||||||
/* tslint:disable:adf-file-name */
|
import { Subject } from 'rxjs';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
export class ExternalAlfrescoApiService {
|
export class ExternalAlfrescoApiService {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Publish/subscribe to events related to node updates.
|
||||||
|
*/
|
||||||
|
nodeUpdated = new Subject<Node>();
|
||||||
|
|
||||||
protected alfrescoApi: AlfrescoApiCompatibility;
|
protected alfrescoApi: AlfrescoApiCompatibility;
|
||||||
|
|
||||||
getInstance(): AlfrescoApiCompatibility {
|
getInstance(): AlfrescoApiCompatibility {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user