This commit is contained in:
2021-08-14 19:20:57 +02:00
parent a3696de0c7
commit 3b1b587806
9 changed files with 354 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php namespace GermanAirlinesVa\Social\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class Member extends Controller
{
public $implement = ['Backend\Behaviors\ListController'];
public $listConfig = 'config_list.yaml';
public function __construct()
{
parent::__construct();
}
}