Merge pull request #51 from mmitrik/pr-extensibility

Adding examples for new pull request extensibility.
This commit is contained in:
Will Smythe 2017-01-06 22:28:38 -05:00 коммит произвёл GitHub
Родитель faaabc621e 32718cf674
Коммит d9a7802efa
1 изменённых файлов: 31 добавлений и 1 удалений

Просмотреть файл

@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "samples-contributions-guide",
"version": "0.1.29",
"version": "0.1.32",
"name": "Contributions Guide",
"description": "Building an extension for Visual Studio Team Services? See the places where you can extend and enhance the user's web experience with an extension ---- right from within the web experience.",
"publisher": "ms-samples",
@ -442,6 +442,22 @@
"registeredObjectId": "showProperties"
}
},
{
"id": "showProperties_25",
"type": "ms.vss-web.action",
"description": "Shows the target properties for pull request details action menu.",
"targets": [
"ms.vss-code-web.pull-request-action-menu"
],
"properties": {
"text": "Custom pull request details action",
"title": "ms.vss-code-web.pull-request-action-menu",
"icon": "images/show-properties.png",
"group": "actions",
"uri": "main.html",
"registeredObjectId": "showProperties"
}
},
{
"id": "queries-hub-tab",
"type": "ms.vss-web.tab",
@ -648,6 +664,20 @@
"uri": "context.html",
"dynamic": true
}
},
{
"id": "pull-request-details-tab",
"type": "ms.vss-web.tab",
"description": "Adds a tab to the Pull Request Details page.",
"targets": [
"ms.vss-code-web.pr-tabs"
],
"properties": {
"name": "PR Details Tab",
"title": "PR Details Tab",
"uri": "context.html",
"action": "PR Details Tab"
}
}
]
}