Open
Description
Now that we do a lot less in middleware (the db transaction handling and precondition checks are no longer middleware), we don't need as many extrude
(basically an extract
that works in middlewares, operating on ServiceRequest
).
They can instead operate on actix's higher level HttpRequest
, simplifying some of their implementations. E.g. the x_from_path
methods wouldn't need extract path elements as manually as they currently do (requiring them to urldecode)