휴지통으로 댓글을 이동할 때 알림 삭제기능 추가

This commit is contained in:
BJRambo 2023-08-30 17:36:11 +09:00
parent 0d8b8a51dd
commit a96955a12e
4 changed files with 64 additions and 0 deletions

View file

@ -755,6 +755,24 @@ class ncenterliteModel extends ncenterlite
return $output->data;
}
function getNotifyListByCommentSrl($document_srl, $comment_srl)
{
if($comment_srl === null)
{
return false;
}
$args = new stdClass();
$args->document_srl = $document_srl;
$args->comment_srl = $comment_srl;
$output = executeQueryArray('ncenterlite.getNotifyListByCommentSrl', $args);
if(!$output->toBool())
{
return $output;
}
return $output->data;
}
/**
* 알림에서 member_srl 정리해서 보내준다.
* @param int $srl