fix: sort episodes by published_at with unpublished episodes at the begining

set the right permissions for episode's publication date edit

fixes #249
This commit is contained in:
Yassine Doghri 2022-10-18 17:25:49 +00:00
commit 1686f840d1
3 changed files with 5 additions and 2 deletions

View file

@ -422,6 +422,7 @@ class PodcastController extends BaseController
{
$episodes = (new EpisodeModel())
->where('podcast_id', $podcastId)
->orderBy('-`published_at`', '', false)
->orderBy('created_at', 'desc')
->findAll($limit);