[ACS-9765]: updates nodes commenting feature

This commit is contained in:
Anton Ramanovich
2026-03-11 17:21:41 +01:00
parent 197e8ff0b8
commit 3804e80237
8 changed files with 197 additions and 10 deletions
@@ -0,0 +1,29 @@
/*!
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Alfresco Example Content Application
*
* This file is part of the Alfresco Example Content Application.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/
import { Node } from '@alfresco/js-api';
export interface ExternalNodePermissionCommentsTabService {
canAddComments(node: Node): boolean;
}
@@ -0,0 +1,30 @@
/*!
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Alfresco Example Content Application
*
* This file is part of the Alfresco Example Content Application.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/
import { InjectionToken } from '@angular/core';
import { ExternalNodePermissionCommentsTabService } from '../models/external-nodes-permission-comments.interface';
export const EXTERNAL_NODE_PERMISSION_COMMENTS_TAB_SERVICE = new InjectionToken<ExternalNodePermissionCommentsTabService[]>(
'ExternalNodePermissionCommentsTabService'
);
+2
View File
@@ -46,6 +46,7 @@ export * from './lib/directives/pagination.directive';
export * from './lib/models/types';
export * from './lib/models/viewer.rules';
export * from './lib/models/external-nodes-permission-comments.interface';
export * from './lib/routing/shared.guard';
export * from './lib/routing/plugin-enabled.guard';
@@ -64,6 +65,7 @@ export * from './lib/services/navigation-history.service';
export * from './lib/testing/lib-testing-module';
export * from './lib/utils/node.utils';
export * from './lib/utils/external-node-comments-permissions.token';
export * from './lib/validators/no-whitespace.validator';
export * from './lib/validators/no-leading-trailing-operators.validator';