amic il y a 8 mois
Parent
commit
451a39ff26
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  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]);