Skip to content

Commit e49a7f3

Browse files
committed
Updates based on feedback
1 parent 5902038 commit e49a7f3

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

src/Frontend/src/views/throughputreport/EndpointsView.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import LegendSendOnlyEndpoint from "./LegendSendOnlyEndpoint.vue";
1313
import LegendPlannedToDecommission from "./LegendPlannedToDecommission.vue";
1414
import LegendNotNServiceBusEndpoint from "./LegendNotNServiceBusEndpoint.vue";
1515
import LegendGatewayOrBridgeEndpoint from "./LegendGatewayOrBridgeEndpoint.vue";
16-
import LegendServiceControlEndpoint from "./LegendServiceControlEndpoint.vue";
16+
import LegendParticularPlatformEndpoint from "./LegendParticularPlatformEndpoint.vue";
1717
1818
const { isBrokerTransport } = storeToRefs(useThroughputStore());
1919
const showLegend = ref(false);
@@ -26,7 +26,7 @@ const legendOptions = new Map<UserIndicator, Component>([
2626
[UserIndicator.PlannedToDecommission, LegendPlannedToDecommission],
2727
[UserIndicator.NotNServiceBusEndpoint, LegendNotNServiceBusEndpoint],
2828
[UserIndicator.GatewayOrBridgingEndpoint, LegendGatewayOrBridgeEndpoint],
29-
[UserIndicator.ServiceControlEndpoint, LegendServiceControlEndpoint],
29+
[UserIndicator.ParticularPlatformEndpoint, LegendParticularPlatformEndpoint],
3030
]);
3131
3232
function toggleOptionsLegendVisible() {
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
<template>
2-
<span>This is an infrastructure endpoint used by the Particular Platform</span>
2+
<span>
3+
This is either part of the <a href="https://docs.particular.net/nservicebus/gateway" target="_blank">Gateway</a> infrastructure or part of the
4+
<a href="https://docs.particular.net/nservicebus/bridge" target="_blank">Messaging Bridge</a> infrastructure.
5+
</span>
36
</template>
File renamed without changes.

src/Frontend/src/views/throughputreport/endpoints/DetectedBrokerQueuesView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const { testResults } = storeToRefs(store);
3232
UserIndicator.NServiceBusEndpointNoLongerInUse,
3333
UserIndicator.PlannedToDecommission,
3434
UserIndicator.GatewayOrBridgingEndpoint,
35-
UserIndicator.ServiceControlEndpoint,
35+
UserIndicator.ParticularPlatformEndpoint,
3636
]"
3737
:source="DataSource.Broker"
3838
column-title="Queue Name"

src/Frontend/src/views/throughputreport/endpoints/DetectedEndpointsView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const { isBrokerTransport, hasErrors } = storeToRefs(useThroughputStore());
3232
UserIndicator.NServiceBusEndpointNoLongerInUse,
3333
UserIndicator.PlannedToDecommission,
3434
UserIndicator.GatewayOrBridgingEndpoint,
35-
UserIndicator.ServiceControlEndpoint,
35+
UserIndicator.ParticularPlatformEndpoint,
3636
]"
3737
:source="DataSource.WellKnownEndpoint"
3838
column-title="Endpoint Name"

src/Frontend/src/views/throughputreport/endpoints/userIndicator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export enum UserIndicator {
66
NServiceBusEndpointNoLongerInUse = "NServiceBusEndpointNoLongerInUse",
77
PlannedToDecommission = "PlannedToDecommission",
88
GatewayOrBridgingEndpoint = "GatewayOrBridgingEndpoint",
9-
ServiceControlEndpoint = "ServiceControlEndpoint",
9+
ParticularPlatformEndpoint = "ParticularPlatformEndpoint",
1010
}

src/Frontend/src/views/throughputreport/endpoints/userIndicatorMapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ export const userIndicatorMapper = new Map<UserIndicator, string>([
88
[UserIndicator.PlannedToDecommission, "Planned to be decommissioned"],
99
[UserIndicator.NotNServiceBusEndpoint, "Not an NServiceBus Endpoint"],
1010
[UserIndicator.GatewayOrBridgingEndpoint, "Gateway or Bridging Endpoint"],
11-
[UserIndicator.ServiceControlEndpoint, "Service Control Endpoint"],
11+
[UserIndicator.ParticularPlatformEndpoint, "Particular Platform Infrastructure Endpoint"],
1212
]);

0 commit comments

Comments
 (0)