chore: handle moving & removing tags with subtags into/out of vaults (#2528)

This commit is contained in:
Aman Harwara
2023-09-26 16:40:09 +05:30
committed by GitHub
parent fe0cd96883
commit 60f96bc201
3 changed files with 47 additions and 6 deletions

View File

@@ -116,6 +116,7 @@ export interface ItemManagerInterface extends AbstractService {
getNoteCount(): number
getDisplayableTags(): SNTag[]
getTagChildren(itemToLookupUuidFor: SNTag): SNTag[]
getDeepTagChildren(itemToLookupUuidFor: SNTag): SNTag[]
getTagParent(itemToLookupUuidFor: SNTag): SNTag | undefined
getDisplayableTagParent(itemToLookupUuidFor: SNTag): SNTag | undefined
isValidTagParent(parentTagToLookUpUuidFor: SNTag, childToLookUpUuidFor: SNTag): boolean