aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fatcat-openapi2.yml2
-rw-r--r--rust/src/api_entity_crud.rs12
2 files changed, 13 insertions, 1 deletions
diff --git a/fatcat-openapi2.yml b/fatcat-openapi2.yml
index a30bb55e..1022e6d3 100644
--- a/fatcat-openapi2.yml
+++ b/fatcat-openapi2.yml
@@ -1267,7 +1267,7 @@ paths:
in: query
type: string
required: false
- description: "List of sub-entities to expand in response. For releases, 'files' and 'container' are valid."
+ description: "List of sub-entities to expand in response. For releases, 'files', 'container', and 'creators' are valid."
- name: hide
in: query
type: string
diff --git a/rust/src/api_entity_crud.rs b/rust/src/api_entity_crud.rs
index cf17a329..eb7a3ac9 100644
--- a/rust/src/api_entity_crud.rs
+++ b/rust/src/api_entity_crud.rs
@@ -1030,6 +1030,18 @@ impl EntityCrud for ReleaseEntity {
)?);
}
}
+ if expand.creators {
+ if let Some(ref mut contribs) = self.contribs {
+ for contrib in contribs {
+ if let Some(ref creator_id) = contrib.creator_id {
+ contrib.creator = Some(CreatorEntity::db_get(
+ conn,
+ FatCatId::from_str(creator_id)?,
+ HideFlags::none())?);
+ }
+ }
+ }
+ }
Ok(())
}