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:
parent
694e18417e
commit
e6766e102e
3 changed files with 9 additions and 1 deletions
|
@ -733,6 +733,7 @@ pub struct ExtensionMetadata {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub version: String,
|
pub version: String,
|
||||||
pub authors: Vec<String>,
|
pub authors: Vec<String>,
|
||||||
|
pub description: String,
|
||||||
pub repository: String,
|
pub repository: String,
|
||||||
#[serde(serialize_with = "serialize_iso8601")]
|
#[serde(serialize_with = "serialize_iso8601")]
|
||||||
pub published_at: PrimitiveDateTime,
|
pub published_at: PrimitiveDateTime,
|
||||||
|
|
|
@ -41,6 +41,7 @@ impl Database {
|
||||||
.split(',')
|
.split(',')
|
||||||
.map(|author| author.trim().to_string())
|
.map(|author| author.trim().to_string())
|
||||||
.collect::<Vec<_>>(),
|
.collect::<Vec<_>>(),
|
||||||
|
description: version.description,
|
||||||
repository: version.repository,
|
repository: version.repository,
|
||||||
published_at: version.published_at,
|
published_at: version.published_at,
|
||||||
download_count: extension.total_download_count as u64,
|
download_count: extension.total_download_count as u64,
|
||||||
|
|
|
@ -84,6 +84,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
name: "Extension One".into(),
|
name: "Extension One".into(),
|
||||||
version: "0.0.2".into(),
|
version: "0.0.2".into(),
|
||||||
authors: vec!["max".into(), "marshall".into()],
|
authors: vec!["max".into(), "marshall".into()],
|
||||||
|
description: "a good extension".into(),
|
||||||
repository: "ext1/repo".into(),
|
repository: "ext1/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
download_count: 0,
|
download_count: 0,
|
||||||
|
@ -93,6 +94,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
name: "Extension Two".into(),
|
name: "Extension Two".into(),
|
||||||
version: "0.2.0".into(),
|
version: "0.2.0".into(),
|
||||||
authors: vec!["marshall".into()],
|
authors: vec!["marshall".into()],
|
||||||
|
description: "a great extension".into(),
|
||||||
repository: "ext2/repo".into(),
|
repository: "ext2/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
download_count: 0
|
download_count: 0
|
||||||
|
@ -129,6 +131,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
name: "Extension Two".into(),
|
name: "Extension Two".into(),
|
||||||
version: "0.2.0".into(),
|
version: "0.2.0".into(),
|
||||||
authors: vec!["marshall".into()],
|
authors: vec!["marshall".into()],
|
||||||
|
description: "a great extension".into(),
|
||||||
repository: "ext2/repo".into(),
|
repository: "ext2/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
download_count: 7
|
download_count: 7
|
||||||
|
@ -138,6 +141,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
name: "Extension One".into(),
|
name: "Extension One".into(),
|
||||||
version: "0.0.2".into(),
|
version: "0.0.2".into(),
|
||||||
authors: vec!["max".into(), "marshall".into()],
|
authors: vec!["max".into(), "marshall".into()],
|
||||||
|
description: "a good extension".into(),
|
||||||
repository: "ext1/repo".into(),
|
repository: "ext1/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
download_count: 5,
|
download_count: 5,
|
||||||
|
@ -165,7 +169,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
vec![NewExtensionVersion {
|
vec![NewExtensionVersion {
|
||||||
name: "Extension Two".into(),
|
name: "Extension Two".into(),
|
||||||
version: semver::Version::parse("0.1.0").unwrap(),
|
version: semver::Version::parse("0.1.0").unwrap(),
|
||||||
description: "an old extension".into(),
|
description: "an old extension".into(),
|
||||||
authors: vec!["marshall".into()],
|
authors: vec!["marshall".into()],
|
||||||
repository: "ext2/repo".into(),
|
repository: "ext2/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
|
@ -201,6 +205,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
name: "Extension Two".into(),
|
name: "Extension Two".into(),
|
||||||
version: "0.2.0".into(),
|
version: "0.2.0".into(),
|
||||||
authors: vec!["marshall".into()],
|
authors: vec!["marshall".into()],
|
||||||
|
description: "a great extension".into(),
|
||||||
repository: "ext2/repo".into(),
|
repository: "ext2/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
download_count: 7
|
download_count: 7
|
||||||
|
@ -210,6 +215,7 @@ async fn test_extensions(db: &Arc<Database>) {
|
||||||
name: "Extension One".into(),
|
name: "Extension One".into(),
|
||||||
version: "0.0.3".into(),
|
version: "0.0.3".into(),
|
||||||
authors: vec!["max".into(), "marshall".into()],
|
authors: vec!["max".into(), "marshall".into()],
|
||||||
|
description: "a real good extension".into(),
|
||||||
repository: "ext1/repo".into(),
|
repository: "ext1/repo".into(),
|
||||||
published_at: t0,
|
published_at: t0,
|
||||||
download_count: 5,
|
download_count: 5,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue