diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-07 22:37:09 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-07 22:37:09 -0700 |
commit | 7354899493f6448bed5698ad6ade1dbebcf39379 (patch) | |
tree | b1249a0f356f4d19cbe5b1ea2a07f3ce0251538b /rust | |
parent | fc2025b8db9e058d429136f382749ade52df326c (diff) | |
download | fatcat-7354899493f6448bed5698ad6ade1dbebcf39379.tar.gz fatcat-7354899493f6448bed5698ad6ade1dbebcf39379.zip |
TODO and comment
Diffstat (limited to 'rust')
-rw-r--r-- | rust/TODO | 2 | ||||
-rw-r--r-- | rust/src/api_server.rs | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,6 @@ +- database_entity_crud -> api_entity_crud +- merge autoaccept branch in with http-verbs branch - fatcat_api -> fatcat_api_schema (or spec? models? types?) - fatcat -> fatcat-api-server - refactor rev creation (from an entity) into it's own function, across the board diff --git a/rust/src/api_server.rs b/rust/src/api_server.rs index 56fbca19..31b71395 100644 --- a/rust/src/api_server.rs +++ b/rust/src/api_server.rs @@ -39,7 +39,6 @@ macro_rules! entity_batch_handler { if autoaccept { let _clr: ChangelogRow = diesel::insert_into(changelog::table) - // if autoaccept, eg_id is always Some .values((changelog::editgroup_id.eq(edit_context.editgroup_id.to_uuid()),)) .get_result(conn)?; } |