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,