Merge pull request #16 from presenton/dashboard-ordering
Fixes: dashboard listings issues
This commit is contained in:
commit
ec13c593d7
1 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,11 @@ class GetPresentationsHandler:
|
|||
for each in presentations:
|
||||
each.data = None
|
||||
each.summary = None
|
||||
if not each.thumbnail:
|
||||
presentations.remove(each)
|
||||
|
||||
presentations.sort(key=lambda x: x.created_at, reverse=True)
|
||||
|
||||
|
||||
logging_service.logger.info(
|
||||
logging_service.message(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue