Skip to content

Commit b0d8c33

Browse files
authored
Rename Notification Endpoints (#2645)
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
1 parent ba1888b commit b0d8c33

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

portal-ui/src/screens/Console/Account/NotificationEndpointTypeSelectorHelpBox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ const NotificationEndpointTypeSelectorHelpBox = () => {
7575
}}
7676
>
7777
<HelpIconFilled />
78-
<div>Learn more about Notification Endpoints</div>
78+
<div>Learn more about Event Destinations</div>
7979
</Box>
8080
<Box sx={{ fontSize: "14px", marginBottom: "15px" }}>
8181
<Box sx={{ paddingBottom: "20px" }}>
8282
<FeatureItem
8383
icon={<LambdaNotificationsIcon />}
84-
description={`What are Lambda Endpoint Notifications?`}
84+
description={`What are Event Destinations?`}
8585
/>
8686
<Box sx={{ paddingTop: "20px" }}>
8787
MinIO bucket notifications allow administrators to send

portal-ui/src/screens/Console/Buckets/BucketDetails/BucketEventsPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ const BucketEventsPanel = ({ classes }: IBucketEventsProps) => {
206206
<Grid item xs={12}>
207207
<br />
208208
<HelpBox
209-
title={"Lambda Notifications"}
209+
title={"Event Notifications"}
210210
iconComponent={<LambdaIcon />}
211211
help={
212212
<Fragment>

portal-ui/src/screens/Console/EventDestinations/AddEventDestination.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ const AddEventDestination = ({
185185
label={
186186
<Fragment>
187187
<BackLink
188-
label="Notification Endpoint"
188+
label="Event Destination"
189189
onClick={() => navigate(IAM_PAGES.EVENT_DESTINATIONS_ADD)}
190190
/>
191191
</Fragment>
@@ -213,8 +213,8 @@ const AddEventDestination = ({
213213

214214
<div className={classes.lambdaNotifTitle}>
215215
<b>
216-
{targetElement ? targetElement.targetTitle : ""}
217-
Notification Endpoint
216+
{targetElement ? targetElement.targetTitle : ""} Event
217+
Destination
218218
</b>
219219
</div>
220220
</div>

portal-ui/src/screens/Console/EventDestinations/ConfirmDeleteDestinationModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ConfirmDeleteDestinationModal = ({
2626
confirmationContent={
2727
<React.Fragment>
2828
<DialogContentText>
29-
Are you sure you want to delete the notification endpoint ?
29+
Are you sure you want to delete the event destination ?
3030
<br />
3131
<b>{serviceName}</b> which is <b>{status}</b>
3232
</DialogContentText>

portal-ui/src/screens/Console/EventDestinations/ListEventDestinations.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,14 +232,14 @@ const ListEventDestinations = ({ classes }: IListNotificationEndpoints) => {
232232
]}
233233
isLoading={isLoading}
234234
records={filteredRecords}
235-
entityName="Notification Endpoints"
235+
entityName="Event Destinations"
236236
idField="service_name"
237237
customPaperHeight={classes.twHeight}
238238
/>
239239
</Grid>
240240
<Grid item xs={12}>
241241
<HelpBox
242-
title={"Notification Endpoints"}
242+
title={"Event Destinations"}
243243
iconComponent={<LambdaIcon />}
244244
help={
245245
<Fragment>

0 commit comments

Comments
 (0)