cfmgrv4 init...4

This commit is contained in:
최준흠 2024-10-25 10:59:33 +09:00
parent 1a34a5c707
commit ac118f0e48

View File

@ -9,17 +9,17 @@ use CodeIgniter\HTTP\ResponseInterface;
use Psr\Log\LoggerInterface;
use App\Models\UserModel;
use App\Services\UserService;
use App\Helpers\Cloudflare\AuthHelper;
use App\Helpers\UserHelper;
use App\Libraries\MyAuth\GoogleAuth;
use App\Libraries\MyAuth\LocalAuth;
class AuthController extends MVController
class UserController extends MVController
{
public function initController(RequestInterface $request, ResponseInterface $response, LoggerInterface $logger)
{
parent::initController($request, $response, $logger);
$this->title = lang("{$this->getService()->class_path}.title");;
$this->helper = new AuthHelper();
$this->helper = new UserHelper();
}
protected function getModel(): UserModel
{