| 1 | <?php |
||
| 17 | class FluxController extends AbstractController |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * The template base path |
||
| 21 | */ |
||
| 22 | const TEMPLATE_BASE = parent::TEMPLATE_BASE . '/flux'; |
||
| 23 | |||
| 24 | /**organization |
||
| 25 | * The index view template path |
||
| 26 | */ |
||
| 27 | const TEMPLATE_INDEX = self::TEMPLATE_BASE . '/index'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return Response |
||
| 31 | * @throws \craft\errors\SiteNotFoundException |
||
| 32 | */ |
||
| 33 | public function actionIndex() |
||
| 43 | } |
||
| 44 |