Files
SmartHomePHP/controllers/PanelController.php
Alex Solomaha c5ae61fddb Some work
2016-08-16 15:07:56 +03:00

34 lines
602 B
PHP

<?php
namespace app\controllers;
use yii\filters\AccessControl;
use yii\web\Controller;
class PanelController extends Controller
{
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'allow' => true,
'roles' => ['@'],
],
],
],
];
}
public function actionIndex()
{
return $this->render('index');
}
}