Added command to update all courses and chapters, downloading videos and checking video size is split into two queues, chapters can be mark to sync individually, updated readme, check if subscription is active, playback rate controll,
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
<th>Sync offline</th>
|
||||
<th>Synced offline</th>
|
||||
<th>File size</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
@foreach($course->chapters()->get() as $chapter)
|
||||
@@ -24,6 +25,12 @@
|
||||
<td>{{ $chapter->sync_offline?'Yes':'no' }}</td>
|
||||
<td>{{ $chapter->is_video_file?'Yes':'-' }}</td>
|
||||
<td>{{ $chapter->video_size_human }}</td>
|
||||
<td class="text-end">
|
||||
@if(!$chapter->sync_offline)
|
||||
<a
|
||||
href="{{ route('course.chapter.sync', ['course' => $chapter->course->id,'chapter' => $chapter->id]) }}">sync</a>
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user