2021-09-13 12:24:11 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { useIntl } from 'react-intl';
|
|
|
|
import { GridItem, H3, Text, Stack } from '@strapi/parts';
|
2020-08-06 16:27:51 +02:00
|
|
|
|
|
|
|
const Policies = () => {
|
2021-09-13 12:24:11 +02:00
|
|
|
const { formatMessage } = useIntl();
|
2020-08-06 16:27:51 +02:00
|
|
|
|
|
|
|
return (
|
2021-09-13 12:24:11 +02:00
|
|
|
<GridItem
|
|
|
|
col={5}
|
|
|
|
background="neutral150"
|
|
|
|
paddingTop={6}
|
|
|
|
paddingBottom={6}
|
|
|
|
paddingLeft={7}
|
|
|
|
paddingRight={7}
|
|
|
|
style={{ minHeight: '100%' }}
|
|
|
|
>
|
|
|
|
<Stack size={2}>
|
2021-09-14 18:51:10 +02:00
|
|
|
<H3>
|
|
|
|
{formatMessage({
|
|
|
|
id: 'users-permissions.Policies.header.title',
|
|
|
|
defaultMessage: 'Advanced settings',
|
|
|
|
})}
|
|
|
|
</H3>
|
2021-09-13 12:24:11 +02:00
|
|
|
<Text as="p" textColor="neutral600">
|
2021-09-14 18:51:10 +02:00
|
|
|
{formatMessage({
|
|
|
|
id: 'users-permissions.Policies.header.hint',
|
2021-09-14 19:38:20 +02:00
|
|
|
defaultMessage:
|
2021-09-14 18:51:10 +02:00
|
|
|
"Select the application's actions or the plugin's actions and click on the cog icon to display the bound route",
|
|
|
|
})}
|
2021-09-13 12:24:11 +02:00
|
|
|
</Text>
|
|
|
|
</Stack>
|
|
|
|
</GridItem>
|
2020-08-06 16:27:51 +02:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Policies;
|