Reputation: 1731
In VSTS I can add comments in the browser to a line in any commit (not in a review).
These commits had a status (Active, Resolved, Won't fix and Closed).
Is there any Overview to see all Active comments or all commits with Active Comments?
Upvotes: 1
Views: 635
Reputation: 33738
There isn’t the way to get all Active comments directly, but you can refer to these steps to build an extension or application with VSTS API to get all Active comments.
Request method: Get
https://[account].visualstudio.com/_apis/discussion/threads?api-version=3.1-preview.1&artifactUri=vstfs%3A%2F%2F%2FGit%2FCommit%2F[team project id]%252F[repository id]%252F[commit id]
Regarding VSTS extension, you can refer to this article: Create your first extension for Visual Studio Team Services
Upvotes: 2