This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

switch back to base url

+4 -2
+4 -2
src/shared/infrastructure/http/app.ts
··· 91 91 jwtConfig.accessTokenExpiresIn, 92 92 jwtConfig.refreshTokenExpiresIn 93 93 ); 94 - const appUrl = configService.get().app.appUrl; 95 - const nodeOauthClient = OAuthClientFactory.createClient(db, appUrl); 94 + const nodeOauthClient = OAuthClientFactory.createClient( 95 + db, 96 + oauthConfig.baseUrl 97 + ); 96 98 const oauthProcessor = new AtProtoOAuthProcessor(nodeOauthClient); 97 99 const userAuthService = new UserAuthenticationService(userRepository); 98 100 const atProtoAgentService = new ATProtoAgentService(nodeOauthClient);