Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Added

- Warning message in the admin panel informing that Download Requests and Process Unsent will require a License Manager resource starting on a date to be defined.

## [1.14.2] - 2026-05-05

### Fixed
Expand Down
3 changes: 2 additions & 1 deletion messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
"admin/settings.process-unsent-helptext": "Process all unsent requests to notify and download an XLS file of the results.",
"admin/settings.verify-availability-helptext": "Runs a shipping simulation to verify that the item can be shipped to the shopper before sending a notification.",
"admin/settings.marketplace-to-notify-helptext": "Allows a seller account to specify a comma separated list of marketplace account names to notify of inventory updates.",
"admin/settings.label": "Settings"
"admin/settings.label": "Settings",
"admin/settings.permission-warning": "Starting 09/21/2026, accessing Download Requests and Process Unsent will require the Download Notification Requests resource in License Manager. Make sure the users who need this feature have the appropriate role assigned."
}
3 changes: 2 additions & 1 deletion messages/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
"admin/settings.process-unsent-helptext": "Process all unsent requests to notify and download an XLS file of the results.",
"admin/settings.verify-availability-helptext": "Runs a shipping simulation to verify that the item can be shipped to the shopper before sending a notificaiton.",
"admin/settings.marketplace-to-notify-helptext": "Allows a seller account to specify a comma separated list of marketplace account names to notify of inventory updates.",
"admin/settings.label": "Settings"
"admin/settings.label": "Settings",
"admin/settings.permission-warning": "A partir de 21/09/2026, o acesso ao Download Requests e ao Process Unsent exigirá o recurso Download Notification Requests no License Manager. Certifique-se de que os usuários que precisam dessa funcionalidade tenham a role adequada atribuída."
}
11 changes: 11 additions & 0 deletions react/NotifyAdmin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import type { FC } from 'react'
import React, { useState, useEffect } from 'react'
import { injectIntl, defineMessages } from 'react-intl'
import {
Alert,
ToastProvider,
ToastConsumer,
Layout,
Expand Down Expand Up @@ -64,6 +65,11 @@ const messages = defineMessages({
id: 'admin/settings.label',
defaultMessage: 'Settings',
},
permissionWarning: {
id: 'admin/settings.permission-warning',
defaultMessage:
'Starting 09/21/2026, accessing Download Requests and Process Unsent will require the Download Notification Requests resource in License Manager. Make sure the users who need this feature have the appropriate role assigned.',
},
downloadHelptext: {
id: 'admin/settings.download-helptext',
defaultMessage: 'Download an XLS file of all notify request records.',
Expand Down Expand Up @@ -297,6 +303,11 @@ const NotifyAdmin: FC<any> = ({ intl }: Props) => {
</div>

<div className="bg-muted-5 pa8">
<div className="mb5">
<Alert type="warning">
{intl.formatMessage(messages.permissionWarning)}
</Alert>
</div>
<PageBlock
variation="annotated"
title={intl.formatMessage(messages.download)}
Expand Down