Kaynağa Gözat

学员channel列表只显示参课的

visuddhinanda 1 yıl önce
ebeveyn
işleme
f3f9579648
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 2 0
      app/Http/Api/CourseApi.php

+ 2 - 0
app/Http/Api/CourseApi.php

@@ -9,6 +9,8 @@ class CourseApi{
         $channels = [];
         $studentsChannel = CourseMember::where('course_id',$courseId)
                 ->whereNotNull('channel_id')
+                ->where('role','student')
+                ->whereIn('status',['joined','accepted','agreed'])
                 ->select('channel_id')
                 ->orderBy('created_at')
                 ->get();