amic 8 месяцев назад
Родитель
Сommit
451a39ff26
1 измененных файлов с 8 добавлено и 0 удалено
  1. 8 0
      controllers/InquirerController.php

+ 8 - 0
controllers/InquirerController.php

@@ -11,6 +11,14 @@ class InquirerController extends \yii\web\Controller
         return $this->render('index');
     }
 
+    public function beforeAction($action)
+	{
+		if (in_array($action->id, ['ajax'])) {
+			$this->enableCsrfValidation = false;
+		}
+		return parent::beforeAction($action);
+	}
+
     public function actionView($id){
 		$model = Inquirer::findOne(['id'=>$id]);