Releases: phpMv/ubiquity-acl
Releases · phpMv/ubiquity-acl
0.0.15 release
0.0.14 release
0.0.13 release
Updated
- remove ids in DAO models
Role,Permission,Resource=> setnameas pk
Added
- DAO ACLs Models generation
Initilialization (in app/config/bootstrap.php file):
function _dev($devtools,$config){
$config=\Ubiquity\controllers\Startup::$config;
\Ubiquity\security\acl\AclManager::initializeDAOProvider($config, 'default');
$dao=new \Ubiquity\security\acl\persistence\AclDAOProvider($config);
$dao->createModels();
echo Console::showInfo("Development mode");
}To be executed with :
Ubiquity bootstrap dev0.0.12 release
Fixed
DAO::getModelsDatabasecall insetDbOffsetsee phpMv/ubiquity#191
0.0.11 release
Updated
- AclDAOProvider initialization (Tables creation) => simplification
use Ubiquity\controllers\Startup;
use Ubiquity\security\acl\AclManager;
$config=Startup::$config;
AclManager::initializeDAOProvider($config, 'default');0.0.10 release
Added/updated
- add tables generation for
AclDAOProvider
0.0.9 release
Added
isAllowedRoutemethod => route by name allowed for a role
0.0.8 release
- Fix
Allowwithcontroller.*pb (no open issue)
0.0.7 release
Changed
- Acl Controller parser (multiple Allow, Permission without name)
0.0.6 release
Changed
- add AclException for non existing role when checking (log) in
AclControllerTrait