Answer the question
In order to leave comments, you need to log in
Need help with AccessControl in Yii2!?
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
'actions' => ['index'],
'allow' => true,
'roles' => ['@'],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
//'delete' => ['POST'],
],
],
];
}
Answer the question
In order to leave comments, you need to log in
'rules' => [
[
'actions' => ['index'],
'allow' => true,
'roles' => ['@'],
],
],
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question