Schedule Posts
Posts
Schedule
Description
Can schedule posts for future publishing
Permission Details
Assigned to Roles (3)
100
Super Administrator
Level 100 access
Granted Sep 27, 2025
80
Administrator
Level 80 access
Granted Sep 27, 2025
60
Manager
Level 60 access
Granted Sep 27, 2025
Usage in Code
Check Permission in Controller
// Check if current user has this permission
if (!$this->hasPermission('posts', 'schedule')) {
return $this->respond(['error' => 'Access denied'], 403);
}
Check Permission in View
<?php if (hasPermission('posts', 'schedule')): ?>
<button class="btn btn-primary">Schedule</button>
<?php endif; ?>
API Endpoint Protection
// In routes or middleware
$routes->post('posts', 'Controller::schedule', [
'permission' => 'posts.schedule'
]);
Permission Summary
Internal Name:
posts.schedule
Display Name:
Schedule Posts
Resource:
Posts
Action:
Schedule
Created:
Sep 27, 2025 12:47 AM
Last Updated:
Sep 27, 2025 12:47 AM
Assignment Statistics
Assigned Roles:
3
Total Users:
0
Status:
In Use