3BRS/Magento-MassShipment

ACL

Closed this issue · 3 comments

Hello,

While settings ACL, there is an Access Denied while doing the Action on this URL :

/admin/keyupShipment/massShipEmail/

Is the method isAllowed() missing ?

Thank you for the fix

Hello, you need to add

/**
* Allow controller to be called by default.
* @return boolean
*/
protected function _isAllowed() {
return true;
}

in Keyup_MassShipment_Adminhtml_KeyupShipmentController.

Best,
Matthias

I've made pull request to add a specific role, more flexible.

Alright thanks, I would have pushed the same solution otherwise ;)