Return descriptions for extensions (#7869)

This PR updates the extensions API to return descriptions for
extensions.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-02-15 17:43:47 -05:00 committed by GitHub
parent 694e18417e
commit e6766e102e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 1 deletions

View file

@ -41,6 +41,7 @@ impl Database {
.split(',')
.map(|author| author.trim().to_string())
.collect::<Vec<_>>(),
description: version.description,
repository: version.repository,
published_at: version.published_at,
download_count: extension.total_download_count as u64,