]> BookStack Code Mirror - bookstack/blob - app/Permissions/PermissionStatus.php
fix Sidebar scrolling at mid-range sceen
[bookstack] / app / Permissions / PermissionStatus.php
1 <?php
2
3 namespace BookStack\Permissions;
4
5 class PermissionStatus
6 {
7     const IMPLICIT_DENY = 0;
8     const IMPLICIT_ALLOW = 1;
9     const EXPLICIT_DENY = 2;
10     const EXPLICIT_ALLOW = 3;
11 }