mirror of
https://github.com/elyby/accounts.git
synced 2024-12-27 07:30:18 +05:30
18 lines
385 B
PHP
18 lines
385 B
PHP
|
<?php
|
||
|
namespace api\controllers;
|
||
|
|
||
|
|
||
|
class Controller extends \yii\rest\Controller {
|
||
|
|
||
|
public $enableCsrfValidation = true;
|
||
|
|
||
|
public function behaviors() {
|
||
|
$parentBehaviors = parent::behaviors();
|
||
|
// xml нам не понадобится
|
||
|
unset($parentBehaviors['contentNegotiator']['formats']['application/xml']);
|
||
|
|
||
|
return $parentBehaviors;
|
||
|
}
|
||
|
|
||
|
}
|