Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #7 from GDG-Lille/develop
Browse files Browse the repository at this point in the history
✨ order by top speaker
  • Loading branch information
François GRUCHALA authored Apr 14, 2019
2 parents 9e40b75 + 4906b2e commit 798caea
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class SpeakersService {
return admin.firestore()
.collection('speakers')
.where('edition', '==', editionId)
.orderBy('displayName', 'asc')
.get()
.then(query => {
const speakers = {};
Expand Down

0 comments on commit 798caea

Please sign in to comment.