Working :
- Add product attributes edit routing - Add product attributes edit action
This commit is contained in:
@@ -43,7 +43,7 @@ use Thelia\Form\MessageCreationForm;
|
||||
class AttributeController extends BaseAdminController
|
||||
{
|
||||
/**
|
||||
* The default action is displaying the messages list.
|
||||
* The default action is displaying the attributes list.
|
||||
*
|
||||
* @return Symfony\Component\HttpFoundation\Response the response
|
||||
*/
|
||||
@@ -54,4 +54,10 @@ class AttributeController extends BaseAdminController
|
||||
return $this->render('product-attributes');
|
||||
}
|
||||
|
||||
public function updateAction() {
|
||||
|
||||
if (null !== $response = $this->checkAuth("admin.configuration.attributes.update")) return $response;
|
||||
|
||||
return $this->render('product-attributes-edit');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user