[ACS-10409] Fix permission checking logic in library navigation (#4824)

* [ACS-10409] Fix permission checking logic in library navigation

* [ACS-10409] cr fix
This commit is contained in:
Mykyta Maliarchuk
2025-10-14 09:50:49 +02:00
committed by GitHub
parent 55a899b177
commit e590839e69
7 changed files with 135 additions and 37 deletions
@@ -23,7 +23,7 @@
*/
import { Action } from '@ngrx/store';
import { SiteBodyCreate } from '@alfresco/js-api';
import { Site, SiteBodyCreate } from '@alfresco/js-api';
import { ModalConfiguration } from '../models/modal-configuration';
export enum LibraryActionTypes {
@@ -48,7 +48,7 @@ export class NavigateLibraryAction implements Action {
readonly type = LibraryActionTypes.Navigate;
constructor(
public payload?: string,
public payload?: Site,
public route?: string
) {}
}