blob: ae20a08922d6665f8ab1b92b58874fd3b7f507a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import withData from '../lib/withData';
import Page from '../components/Page';
import Permissions from '../components/Permissions';
import PleaseSignIn from '../components/PleaseSignIn';
const ItemPage = props => (
<Page>
<PleaseSignIn allowedPermissions={['ADMIN', 'PERMISSIONUPDATE']}>
<Permissions />
</PleaseSignIn>
</Page>
);
export default withData(ItemPage);
|