diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-08-31 14:43:58 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-08-31 14:43:58 -0700 |
commit | 0053d133f8ff96aa4dedc1ff7e2754812ddfc79a (patch) | |
tree | cd051d1886646d0e2a444fe20ce89e10bba1c5a4 /rust/src/api_helpers.rs | |
parent | e53215bc0c0126b624bf92df52a897a4603e044b (diff) | |
download | fatcat-0053d133f8ff96aa4dedc1ff7e2754812ddfc79a.tar.gz fatcat-0053d133f8ff96aa4dedc1ff7e2754812ddfc79a.zip |
correct EditgroupAlreadyAccepted response
Diffstat (limited to 'rust/src/api_helpers.rs')
-rw-r--r-- | rust/src/api_helpers.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/rust/src/api_helpers.rs b/rust/src/api_helpers.rs index 020aad76..a68ed8a9 100644 --- a/rust/src/api_helpers.rs +++ b/rust/src/api_helpers.rs @@ -34,10 +34,7 @@ pub fn accept_editgroup(editgroup_id: Uuid, conn: &PgConnection) -> Result<Chang .count() .get_result(conn)?; if count > 0 { - bail!( - "editgroup {} has already been accepted", - editgroup_id.to_string() - ); + return Err(ErrorKind::EditgroupAlreadyAccepted(uuid2fcid(&editgroup_id)).into()); } // for each entity type... |