TD14SP1 Review Space: When restoring a revision, what comments are restored in Review Space?

Hi all. Our publications are being reviewed in Review Space. If we restore a topic to an earlier revision, what happens to the comments in Review Space? Are they also reverted to the comments made in the earlier revision? Or are the most recent comments kept? Or...?

Thanks!

Parents Reply
  • So the Annotations (comments) are stored in the CMS repository and are available over the Annotations API endpoints.

    If you were here before, then my way of making the Annotations API easily usable is through ISHRemote, see https://github.com/sdl/ISHRemote/ where Annotation cmdlets are available since v0.11

    On a small repository, the below might still work, but at some point exporting everything over one call is not a good idea... 

    New-IshSession -WsBaseUrl https://ish.example.com/ISHWS/ -PSCredential admin
    Find-IshAnnotation | Out-GridView

    Note that ISHRemote allows exporting per content object (DocumentObj) or Publication even. The Annotations are softly linked by logical/version/language identifier (not by card id)
    New-IshSession -WsBaseUrl https://ish.example.com/ISHWS/ -PSCredential admin
    Get-IshDocumentObj -LogicalId GUID-C7BE64D8-7543-44FE-B748-3DDA93CF29B3 | Get-IshAnnotation

    -Dave

Children