<?php
namespace ConcreteControllerSinglePageDashboardSystem;
use ConcreteCorePageControllerDashboardPageController;
class Permissions extends DashboardPageController {
/**
* Dashboard view - automatically redirects to a default
* page in the category
*
* @return void
*/
public function view() {
$this->redirect('/dashboard/system/permissions/site');
}
}
?>