add role checking to controllers
This commit is contained in:
@@ -55,7 +55,7 @@ class ProductController extends \backend\controllers\BackendController
|
||||
$model = new Product();
|
||||
$model->stock = 0;
|
||||
$model->status = Product::STATUS_ACTIVE;
|
||||
$accounts = Account::readAccounts(null);
|
||||
$accounts = Account::read(null);
|
||||
$categories = ProductCategory::read(null);
|
||||
|
||||
if ($model->load(Yii::$app->request->post()) && $model->save()) {
|
||||
|
||||
Reference in New Issue
Block a user