Add deleteUser logic to identity service.
Depends on D6787
Differential D6788
[Identity] Add deleteUser RPC to proto files • jon on Feb 20 2023, 1:34 PM. Authored by Tags None Referenced Files
Details Add deleteUser logic to identity service. Depends on D6787 cargo build Gets end-to-end tested in a later diff
Diff Detail
Event Timeline
Comment Actions nice! i noticed we never send back the failure enum variant. did you look into best practices for gRPC API design? Comment Actions Since the generated bindings require me to send Result<tonic::Response<DeleteUserResponse>, tonic::Status>, I can only send a status. I will just remove the inner result and let the grpc status dictate success. |