You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
565 B

<?php
namespace api\controllers;
use api\logic\Helper;
use backend\modules\shop\models\ars\Address;
use Yii;
use yii\rest\ActiveController;
use yii\web\NotFoundHttpException;
/**
* @author iron
* @email weiriron@gmail.com
*/
class TakingSiteController extends ActiveController
{
public $modelClass = 'backend\modules\shop\models\ars\TakingSite';
public function actions()
{
$action = parent::actions();
unset($action['delete']);
unset($action['update']);
unset($action['options']);
return $action;
}
}