interview back

This commit is contained in:
andrey
2021-08-16 14:32:54 +03:00
parent ec8b002838
commit 6f7c497d80
17 changed files with 534 additions and 3 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace backend\modules\interview\controllers;
use yii\web\Controller;
/**
* Default controller for the `interview` module
*/
class DefaultController extends Controller
{
/**
* Renders the index view for the module
* @return string
*/
public function actionIndex()
{
return $this->render('index');
}
}