소스 검색

Pour le dashboard on supprime la recherche des commentaires sans date

Sangfroid 5 달 전
부모
커밋
0636ad03c7
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Repository/CommentaireRepository.php

+ 1 - 0
src/Repository/CommentaireRepository.php

@@ -34,6 +34,7 @@ class CommentaireRepository extends ServiceEntityRepository
     {
         return $this->createQueryBuilder('c')
             ->select("DATE_FORMAT(c.dateSubmitted, '%Y-%m') as month, COUNT(c.id) as entryCount")
+            ->where('c.dateSubmitted IS NOT NULL')
             ->groupBy('month')
             ->orderBy('month', 'ASC')
             ->getQuery()