You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by zacknewman November 16, 2023 api::core::emergency_access::post_emergency_access is only ever used once in put_emergency_access, and the Route is not added by routes! in routes. Three fixes are:
add the Route via routes! in routes.
Remove the post macro.
Remove the function altogether and integrate its body into put_emergency_access.
The text was updated successfully, but these errors were encountered:
While there was a function and a derive, this endpoint wasn't part of
the routes. Since Bitwarden does have this endpoint ill add the route
instead of deleting it.
Fixes dani-garcia#4076Fixesdani-garcia#4144
Discussed in #4076
Originally posted by zacknewman November 16, 2023
api::core::emergency_access::post_emergency_access
is only ever used once input_emergency_access
, and theRoute
is not added byroutes!
inroutes
. Three fixes are:Route
viaroutes!
inroutes
.post
macro.put_emergency_access
.The text was updated successfully, but these errors were encountered: