Skip to content

Commit

Permalink
order extensions by name
Browse files Browse the repository at this point in the history
  • Loading branch information
ryw authored Jul 25, 2023
1 parent 284cccc commit e38fd70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registry/src/routes/extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ pub async fn get_all_extensions(

// Create a database transaction
let mut tx = conn.begin().await?;
let rows = sqlx::query!("SELECT * FROM extensions")
let rows = sqlx::query!("SELECT * FROM extensions order by name asc")
.fetch_all(&mut tx)
.await?;
for row in rows.iter() {
Expand Down

0 comments on commit e38fd70

Please sign in to comment.