chore: add forgotten file

Signed-off-by: Alisson Fabiano <afabiano@eshopworld.com>
This commit is contained in:
Alisson Fabiano
2022-08-11 16:18:01 +01:00
parent bd34a1e7d4
commit 05cf5f1762
2 changed files with 13 additions and 0 deletions
+9
View File
@@ -24,6 +24,7 @@ import {
azurePullRequestDashboardRouteRef,
azureGitTagsEntityContentRouteRef,
azurePullRequestsEntityContentRouteRef,
azureReadMeEntityContentRouteRef,
} from './routes';
import {
createApiFactory,
@@ -100,3 +101,11 @@ export const EntityAzurePullRequestsContent = azureDevOpsPlugin.provide(
mountPoint: azurePullRequestsEntityContentRouteRef,
}),
);
export const EntityAzureReadMeContent = azureDevOpsPlugin.provide(
createRoutableExtension({
name: 'EntityAzureReadMeContent',
component: () => import('./components/ReadMeCard').then(m => m.ReadMeCard),
mountPoint: azureReadMeEntityContentRouteRef,
}),
);
+4
View File
@@ -31,3 +31,7 @@ export const azureGitTagsEntityContentRouteRef = createRouteRef({
export const azurePullRequestsEntityContentRouteRef = createRouteRef({
id: 'azure-pull-requests-entity-content',
});
export const azureReadMeEntityContentRouteRef = createRouteRef({
id: 'azure-read-me-entity-content',
});