foreman_rh_cloud 13.2.1 → 13.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dfa11165fb0df8c45bf5e18b6f2611b8e63fc771937efa1288adf0b7b3dce15f
|
|
4
|
+
data.tar.gz: a6f2ecf8a2a1de5aa57374535d3c974f6390d40439e0434f4267ce5e521fe05c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c590acf7aa733f22104dd673226a3f5652535e27fd6c6dbc2684e21d29adc30fe848db31b772112a0ee8889adb77f1c5795afae7144c9c8cab83106b5c4c052b
|
|
7
|
+
data.tar.gz: '02668725a8090ca3c1629e664ac296e716abe6f8da5b1f9dabd4eba297e4dc517f3125439ff9ac5825dfb1225c48b6f507ea0a0803ab1217eebcd87db9b95c2a'
|
data/package.json
CHANGED
|
@@ -7,6 +7,8 @@ import { getDocsURL } from 'foremanReact/common/helpers';
|
|
|
7
7
|
import { FormattedMessage } from 'react-intl';
|
|
8
8
|
import { selectSubscriptionConnectionEnabled } from '../../../InventorySettings/InventorySettingsSelectors';
|
|
9
9
|
|
|
10
|
+
import { getSubscriptionServiceDocsUrl } from '../../../../ForemanInventoryHelpers';
|
|
11
|
+
|
|
10
12
|
export const PageDescription = () => {
|
|
11
13
|
const subscriptionConnectionEnabled = useSelector(
|
|
12
14
|
selectSubscriptionConnectionEnabled
|
|
@@ -80,7 +82,7 @@ export const PageDescription = () => {
|
|
|
80
82
|
{__('For more information about the Subscriptions service, see:')}
|
|
81
83
|
|
|
82
84
|
<a
|
|
83
|
-
href=
|
|
85
|
+
href={getSubscriptionServiceDocsUrl()}
|
|
84
86
|
target="_blank"
|
|
85
87
|
rel="noopener noreferrer"
|
|
86
88
|
>
|
|
@@ -11,6 +11,13 @@ export const getInventoryDocsUrl = () =>
|
|
|
11
11
|
)}`
|
|
12
12
|
);
|
|
13
13
|
|
|
14
|
+
export const getSubscriptionServiceDocsUrl = () =>
|
|
15
|
+
foremanUrl(
|
|
16
|
+
`/links/manual/?root_url=${URI.encode(
|
|
17
|
+
'https://docs.redhat.com/en/documentation/subscription_central/1-latest/html-single/getting_started_with_the_subscriptions_service/index'
|
|
18
|
+
)}`
|
|
19
|
+
);
|
|
20
|
+
|
|
14
21
|
export const getActionsHistoryUrl = () =>
|
|
15
22
|
foremanUrl(
|
|
16
23
|
'/foreman_tasks/tasks?search=label+%3D+ForemanInventoryUpload%3A%3AAsync%3A%3AHostInventoryReportJob+or+label+%3D+ForemanInventoryUpload%3A%3AAsync%3A%3AGenerateAllReportsJob&page=1'
|