diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-20 15:01:30 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-20 15:01:30 -0700 |
commit | 9f25c2b4bd1e600448512fa6c4553acb6a3d92d6 (patch) | |
tree | 08bf839164397f8191a3949e245ecd3beb5aa0a9 /rust/src/endpoint_handlers.rs | |
parent | 510dc33c55b1aa993fc3e0e7085184ecbda8ef04 (diff) | |
download | fatcat-9f25c2b4bd1e600448512fa6c4553acb6a3d92d6.tar.gz fatcat-9f25c2b4bd1e600448512fa6c4553acb6a3d92d6.zip |
make some XXX into TODO
Diffstat (limited to 'rust/src/endpoint_handlers.rs')
-rw-r--r-- | rust/src/endpoint_handlers.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/src/endpoint_handlers.rs b/rust/src/endpoint_handlers.rs index 5c22e21d..4253af45 100644 --- a/rust/src/endpoint_handlers.rs +++ b/rust/src/endpoint_handlers.rs @@ -37,7 +37,6 @@ macro_rules! entity_auto_batch_handler { let _clr: ChangelogRow = diesel::insert_into(changelog::table) .values((changelog::editgroup_id.eq(edit_context.editgroup_id.to_uuid()),)) .get_result(conn)?; - // XXX: edits.into_iter().map(|e| e.into_model()).collect() self.get_editgroup_handler(conn, editgroup_id) } } |