Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save des1roer/7b08b3902496aa6ff232 to your computer and use it in GitHub Desktop.
Save des1roer/7b08b3902496aa6ff232 to your computer and use it in GitHub Desktop.
<?php
namespace app\modules\video\controllers;
use yii\web\Controller;
class DefaultController extends Controller {
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
'actions' => ['*'],
'allow' => true,
'roles' => ['@'],
// 'roles' => ['admin'],
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'logout' => ['post'],
],
],
];
}
public function actionIndex()
{
return $this->render('index');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment