aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/entity_crud.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-05-10 11:50:05 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-05-10 11:50:05 -0700
commit8e3038e55282088825a1243a34f2d9f7d25e5533 (patch)
tree5b92276aed6f5b16b95abd57235a2a6ead46c945 /rust/src/entity_crud.rs
parent2fafc86c3439b88de8b7704f5f0d68d6a48842e2 (diff)
downloadfatcat-8e3038e55282088825a1243a34f2d9f7d25e5533.tar.gz
fatcat-8e3038e55282088825a1243a34f2d9f7d25e5533.zip
impl withdrawn_status
Diffstat (limited to 'rust/src/entity_crud.rs')
-rw-r--r--rust/src/entity_crud.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/entity_crud.rs b/rust/src/entity_crud.rs
index 4a7cdee0..d141e838 100644
--- a/rust/src/entity_crud.rs
+++ b/rust/src/entity_crud.rs
@@ -1624,7 +1624,7 @@ impl EntityCrud for ReleaseEntity {
release_stage: None,
release_date: None,
release_year: None,
- withdrawn_state: None,
+ withdrawn_status: None,
withdrawn_date: None,
withdrawn_year: None,
doi: None,
@@ -1924,7 +1924,7 @@ impl EntityCrud for ReleaseEntity {
release_stage: rev_row.release_stage,
release_date: rev_row.release_date,
release_year: rev_row.release_year,
- withdrawn_state: rev_row.withdrawn_state,
+ withdrawn_status: rev_row.withdrawn_status,
withdrawn_date: rev_row.withdrawn_date,
withdrawn_year: rev_row.withdrawn_year,
doi: rev_row.doi,
@@ -2089,7 +2089,7 @@ impl EntityCrud for ReleaseEntity {
release_stage: model.release_stage.clone(),
release_date: model.release_date,
release_year: model.release_year,
- withdrawn_state: model.withdrawn_state.clone(),
+ withdrawn_status: model.withdrawn_status.clone(),
withdrawn_date: model.withdrawn_date,
withdrawn_year: model.withdrawn_year,
doi: model.doi.clone(),