List Azure Devops as an enterprise plugin (#49189)

* list azure devops as an enterprise plugin

* change base url to grafana.com/grafana/plugins and remove trailing slashes for consistency
This commit is contained in:
Brendan O'Handley
2022-05-18 15:02:45 -04:00
committed by GitHub
parent 25da759bf2
commit 5b52a1c391
4 changed files with 16 additions and 9 deletions

View File

@@ -53,6 +53,6 @@ describe('buildCategories', () => {
it('should add enterprise phantom plugins', () => {
expect(categories[3].title).toBe('Enterprise plugins');
expect(categories[3].plugins.length).toBe(16);
expect(categories[3].plugins.length).toBe(17);
});
});

View File

@@ -190,6 +190,12 @@ function getEnterprisePhantomPlugins(): DataSourcePluginMeta[] {
name: 'Splunk Infrastructure Monitoring',
imgUrl: 'public/img/plugins/signalfx-logo.svg',
}),
getPhantomPlugin({
id: 'grafana-azure-devops-datasource',
description: 'Azure Devops datasource',
name: 'Azure Devops',
imgUrl: 'public/img/plugins/azure-devops.png',
}),
];
}