diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-17 15:48:49 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-19 14:55:14 -0800 |
commit | 68bb2a00e56fda04228c13cc2bea90b71002c527 (patch) | |
tree | 5b930b6eedb05e34ea8fbddae1c1aab1c7564c02 /rust/src/endpoint_handlers.rs | |
parent | 0fb0c3759a04c025800e3175fb4cbd8d595f8c4b (diff) | |
download | fatcat-68bb2a00e56fda04228c13cc2bea90b71002c527.tar.gz fatcat-68bb2a00e56fda04228c13cc2bea90b71002c527.zip |
rustfmt
Diffstat (limited to 'rust/src/endpoint_handlers.rs')
-rw-r--r-- | rust/src/endpoint_handlers.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rust/src/endpoint_handlers.rs b/rust/src/endpoint_handlers.rs index cc717344..1b7bd0b6 100644 --- a/rust/src/endpoint_handlers.rs +++ b/rust/src/endpoint_handlers.rs @@ -26,7 +26,6 @@ macro_rules! entity_auto_batch_handler { entity_list: &[models::$model], editor_id: FatcatId, ) -> Result<Editgroup> { - let editgroup_row = editgroup.db_create(conn, true)?; let editgroup_id = FatcatId::from_uuid(&editgroup_row.id); let edit_context = make_edit_context(editor_id, editgroup_id, true)?; @@ -39,7 +38,7 @@ macro_rules! entity_auto_batch_handler { .get_result(conn)?; self.get_editgroup_handler(conn, editgroup_id) } - } + }; } pub fn get_release_files( |