@@ -6715,9 +6715,8 @@ impl NexusExternalApi for NexusExternalApiImpl {
6715
6715
let path = path_params. into_inner ( ) ;
6716
6716
let opctx =
6717
6717
crate :: context:: op_context_for_external_api ( & rqctx) . await ?;
6718
- let ( .., user) = nexus
6719
- . current_silo_user_lookup ( & opctx, path. user_id )
6720
- . await ?;
6718
+ let ( .., user) =
6719
+ nexus. current_silo_user_lookup ( & opctx, path. user_id ) . await ?;
6721
6720
Ok ( HttpResponseOk ( user. into ( ) ) )
6722
6721
} ;
6723
6722
apictx
@@ -6731,7 +6730,8 @@ impl NexusExternalApi for NexusExternalApiImpl {
6731
6730
rqctx : RequestContext < Self :: Context > ,
6732
6731
path_params : Path < params:: UserPath > ,
6733
6732
query_params : Query < PaginatedById > ,
6734
- ) -> Result < HttpResponseOk < ResultsPage < views:: DeviceAccessToken > > , HttpError > {
6733
+ ) -> Result < HttpResponseOk < ResultsPage < views:: DeviceAccessToken > > , HttpError >
6734
+ {
6735
6735
let apictx = rqctx. context ( ) ;
6736
6736
let handler = async {
6737
6737
let nexus = & apictx. context . nexus ;
@@ -6763,7 +6763,8 @@ impl NexusExternalApi for NexusExternalApiImpl {
6763
6763
rqctx : RequestContext < Self :: Context > ,
6764
6764
path_params : Path < params:: UserPath > ,
6765
6765
query_params : Query < PaginatedById > ,
6766
- ) -> Result < HttpResponseOk < ResultsPage < views:: ConsoleSession > > , HttpError > {
6766
+ ) -> Result < HttpResponseOk < ResultsPage < views:: ConsoleSession > > , HttpError >
6767
+ {
6767
6768
let apictx = rqctx. context ( ) ;
6768
6769
let handler = async {
6769
6770
let nexus = & apictx. context . nexus ;
0 commit comments