dbms_init...1

This commit is contained in:
최준흠 2025-06-06 14:03:32 +09:00
parent 6ced3137cb
commit fbbaee1df7
2 changed files with 1 additions and 3 deletions

View File

@ -26,8 +26,6 @@ abstract class AuthController extends CommonController
$this->individualScripts = []; $this->individualScripts = [];
} }
abstract protected function getSNSButton(): string; abstract protected function getSNSButton(): string;
abstract protected function create_process(array $formDatas): UserEntity;
final public function getHelper(): mixed final public function getHelper(): mixed
{ {
if (!$this->_helper) { if (!$this->_helper) {

View File

@ -59,7 +59,7 @@ class GoogleService extends AuthService
if (!$entity) { if (!$entity) {
throw new PageNotFoundException("회원[{$sns_entity->getTitle()}]님은 아직 로컬사용자 연결이 이루어지지 않았습니다."); throw new PageNotFoundException("회원[{$sns_entity->getTitle()}]님은 아직 로컬사용자 연결이 이루어지지 않았습니다.");
} }
return $entity; return $this->login_process($entity);;
} catch (\Google_Service_Exception $e) { } catch (\Google_Service_Exception $e) {
log_message('error', '구글 서비스 예외발생: ' . $e->getMessage()); log_message('error', '구글 서비스 예외발생: ' . $e->getMessage());
throw new PageNotFoundException("구글 로그인 중 오류가 발생했습니다. 다시 시도해 주세요."); throw new PageNotFoundException("구글 로그인 중 오류가 발생했습니다. 다시 시도해 주세요.");