회원 탈퇴시(트리거 발생시) 유저 세팅 데이터도 삭제 할 수 있도록 개선

This commit is contained in:
BJRambo 2018-09-17 19:34:15 +09:00
parent a20156242f
commit 15ab8b5353
2 changed files with 16 additions and 0 deletions

View file

@ -82,6 +82,13 @@ class ncenterliteController extends ncenterlite
{
$this->removeFlagFile($args->member_srl);
}
// Delete to user setting.
$userSetOutput = executeQuery('ncenterlite.deleteNcenterliteUserSettingData', $args);
if(!$userSetOutput->toBool())
{
return $userSetOutput;
}
}
function triggerAfterInsertDocument(&$obj)