Web\Controller: initial commit
* This is the controller all modules should inherit from. * We will flip code with the ModuleActionController as soon as a couple of pending feature branches are merged back to the master.
This commit is contained in:
parent
1c0e427d3b
commit
28c239c6fd
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Web;
|
||||
|
||||
use Icinga\Web\Controller\ModuleActionController;
|
||||
|
||||
/**
|
||||
* This is the controller all modules should inherit from
|
||||
* We will flip code with the ModuleActionController as soon as a couple
|
||||
* of pending feature branches are merged back to the master.
|
||||
*/
|
||||
class Controller extends ModuleActionController
|
||||
{
|
||||
}
|
Loading…
Reference in New Issue