@@ -6870,9 +6870,8 @@ impl NexusExternalApi for NexusExternalApiImpl {
6870
6870
let path = path_params. into_inner ( ) ;
6871
6871
let opctx =
6872
6872
crate :: context:: op_context_for_external_api ( & rqctx) . await ?;
6873
- let ( .., user) = nexus
6874
- . current_silo_user_lookup ( & opctx, path. user_id )
6875
- . await ?;
6873
+ let ( .., user) =
6874
+ nexus. current_silo_user_lookup ( & opctx, path. user_id ) . await ?;
6876
6875
Ok ( HttpResponseOk ( user. into ( ) ) )
6877
6876
} ;
6878
6877
apictx
@@ -6886,7 +6885,8 @@ impl NexusExternalApi for NexusExternalApiImpl {
6886
6885
rqctx : RequestContext < Self :: Context > ,
6887
6886
path_params : Path < params:: UserPath > ,
6888
6887
query_params : Query < PaginatedById > ,
6889
- ) -> Result < HttpResponseOk < ResultsPage < views:: DeviceAccessToken > > , HttpError > {
6888
+ ) -> Result < HttpResponseOk < ResultsPage < views:: DeviceAccessToken > > , HttpError >
6889
+ {
6890
6890
let apictx = rqctx. context ( ) ;
6891
6891
let handler = async {
6892
6892
let nexus = & apictx. context . nexus ;
@@ -6918,7 +6918,8 @@ impl NexusExternalApi for NexusExternalApiImpl {
6918
6918
rqctx : RequestContext < Self :: Context > ,
6919
6919
path_params : Path < params:: UserPath > ,
6920
6920
query_params : Query < PaginatedById > ,
6921
- ) -> Result < HttpResponseOk < ResultsPage < views:: ConsoleSession > > , HttpError > {
6921
+ ) -> Result < HttpResponseOk < ResultsPage < views:: ConsoleSession > > , HttpError >
6922
+ {
6922
6923
let apictx = rqctx. context ( ) ;
6923
6924
let handler = async {
6924
6925
let nexus = & apictx. context . nexus ;
0 commit comments