From b3e2af7f0fc1dbd67186d03c98ea8b6f4ab19f47 Mon Sep 17 00:00:00 2001
From: swapnil-verma-gl <92505353+swapnil-verma-gl@users.noreply.github.com>
Date: Fri, 28 Feb 2025 13:17:26 +0530
Subject: [PATCH] [ACS-9369] Updated rule-migration-guide.md to include missed
rule (#4420)
---
docs/extending/rule-migration-guide.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/extending/rule-migration-guide.md b/docs/extending/rule-migration-guide.md
index ef087c19b..7e85acf42 100644
--- a/docs/extending/rule-migration-guide.md
+++ b/docs/extending/rule-migration-guide.md
@@ -88,7 +88,7 @@ only need to be done on any extensions configuration that is custom to you. All
| isTrashcanItemSelected | app.navigation.isTrashcan
app.selection.notEmpty |
| canLeaveLibrary | app.selection.library
app.selection.hasLibraryRole |
| canShowInfoDrawer | app.selection.notEmpty
!app.navigation.isLibraries
!app.navigation.isTrashcan |
-| app.toolbar.favorite.canEditMetadata | app.selection.library
isLibraryManager |
+| app.toolbar.favorite.canEditMetadata | app.selection.library
app.selection.library
isLibraryManager |
| canToggleEditOffline | app.selection.file
!app.navigation.isTrashcan
canToggleFileLock |
| canEditFolder | app.selection.folder.canUpdate
!app.navigation.isTrashcan |
| app.toolbar.favorite.canAdd | app.selection.notEmpty
app.selection.canAddFavorite
!app.navigation.isTrashcan
!app.navigation.isRecentFiles
!app.navigation.isSharedFiles
!app.navigation.isSearchResults
!app.navigation.isFavorites |
@@ -105,6 +105,7 @@ only need to be done on any extensions configuration that is custom to you. All
| canShowExpand | !app.navigation.isLibraries
!app.navigation.isDetails |
| canInfoPreview | app.navigation.isSearchResults
!isMultiSelection
!app.selection.folder
!app.navigation.isPreview |
| app.selection.canDelete | !app.navigation.isTrashcan
!app.navigation.isLibraries
app.selection.notEmpty
app.selection.canDelete |
+| isLibraryManager | app.selection.library
isLibraryManager |
In addition to the above-mentioned migrations, the following set of rules were removed from the ACA codebase, since they were not being used by the application. If you still need access to these rules however, the original implementation
can be found in [legacy-rules.md](./legacy-rules.md). However, do note that since these rules have been removed from the ACA codebase, no support will be provided for them in the future. We advise that you should only use the provided rules as reference,