We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f4ef2 commit a601427Copy full SHA for a601427
1 file changed
src/main/kotlin/no/java/moresleep/conference/ConferenceRepo.kt
@@ -31,7 +31,7 @@ object ConferenceRepo {
31
fun allConferences():List<Conference> =
32
ServiceExecutor.connection().allFromQuery("select * from conference") {
33
Conference(it)
34
- }
+ }.sortedBy { it.name }
35
36
fun oneConference(conferenceid:String):Conference? =
37
ServiceExecutor.connection().preparedStatement("select * from conference where id = ?") {ps ->
0 commit comments