Nope,
Currently only GM level 99 can see the pages...
URL: http://127.0.0.1:8081/fokro/?module=pages&action=content&path=info
My acess.php:
'pages' => array(
'index' => AccountLevel::ADMIN,
'add' => AccountLevel::ADMIN,
'delete' => AccountLevel::ADMIN,
'edit' => AccountLevel::ADMIN,
'content' => AccountLevel::ANYONE,
content.php of modules page:
<?php
if (!defined('FLUX_ROOT')) exit;
$pages = Flux::config('FluxTables.CMSPagesTable');
$path = trim($params->get('path'));
$sql = "SELECT title, body, modified FROM {$server->loginDatabase}.$pages WHERE path = ?";
$sth = $server->connection->getStatement($sql);
$sth->execute(array($path));
$pages = $sth->fetchAll();
if($pages) {
foreach($pages as $prow) {
$title = $prow->title;
$body = $prow->body;
$modified = $prow->modified;
}
}
else {
$this->redirect($this->url('main','index'));
}
?>