Skip to content
Snippets Groups Projects
Commit e409f125 authored by Zoltan Runyo's avatar Zoltan Runyo
Browse files

Fix access level handling for IOC list

parent 305f7f14
No related branches found
No related tags found
2 merge requests!139Merge before release,!128Fix access level handling for IOC list
Pipeline #107850 passed
......@@ -8,6 +8,7 @@ import { useIOCSearch, userContext } from "../../api/SwaggerApi";
import { makeStyles } from '@material-ui/core/styles';
import { initRequestParams } from "../../components/common/Helper";
import { SearchBar } from "../../components/common/SearchBar/SearchBar";
import AccessControl from '../../components/auth/AccessControl';
const useStyles = makeStyles((theme) => ({
root: {
......@@ -86,12 +87,15 @@ export function IOCListView() {
<Paper className={classes.root}>
<Grid container spacing={1}>
<Grid item xs={12} md={12}>
<Box display="flex" justifyContent="end" p={2} m={1}>
<FormControlLabel className={classes.formControl}
control={<Switch checked={ownOnly} onChange={handleChangeOwn} />}
label={<Typography variant="h5">My IOCs</Typography>}
/>
</Box>
<AccessControl allowedRoles={["DeploymentToolAdmin", "DeploymentToolIntegrator"]}
renderNoAccess={() => <></>} >
<Box display="flex" justifyContent="end" p={2} m={1}>
<FormControlLabel className={classes.formControl}
control={<Switch checked={ownOnly} onChange={handleChangeOwn} />}
label={<Typography variant="h5">My IOCs</Typography>}
/>
</Box>
</AccessControl>
</Grid>
<Grid item xs={12} md={12}>
{content}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment