Skip to content

Releases: phpMv/ubiquity-acl

0.0.15 release

04 Jan 00:41
Compare
Choose a tag to compare

Updated

  • add dbOffset for AclDAOProvider models creation

0.0.14 release

31 Dec 15:01
Compare
Choose a tag to compare

0.0.13 release

31 Dec 02:49
Compare
Choose a tag to compare

Updated

  • remove ids in DAO models Role, Permission, Resource => set name as 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 dev

0.0.12 release

26 Dec 03:57
Compare
Choose a tag to compare

Fixed

0.0.11 release

02 Nov 20:07
Compare
Choose a tag to compare

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

31 Oct 01:22
Compare
Choose a tag to compare

Added/updated

  • add tables generation for AclDAOProvider

0.0.9 release

06 Mar 02:34
Compare
Choose a tag to compare

Added

  • isAllowedRoute method => route by name allowed for a role

0.0.8 release

20 Jan 17:07
Compare
Choose a tag to compare
  • Fix Allow with controller.* pb (no open issue)

0.0.7 release

17 Jan 13:39
Compare
Choose a tag to compare

Changed

  • Acl Controller parser (multiple Allow, Permission without name)

0.0.6 release

05 Jan 02:41
Compare
Choose a tag to compare

Changed

  • add AclException for non existing role when checking (log) in AclControllerTrait