alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
switch back to base url
author
Wesley Finck
date
1 year ago
(May 21, 2025, 5:10 PM -0700)
commit
525fefd5
525fefd5832d6b4108800ca84ada47213cc430c8
parent
985f18ae
985f18ae50dd737bfe2d5def5db29788e874191a
+4
-2
1 changed file
Expand all
Collapse all
Unified
Split
src
shared
infrastructure
http
app.ts
+4
-2
src/shared/infrastructure/http/app.ts
View file
Reviewed
···
91
91
jwtConfig.accessTokenExpiresIn,
92
92
jwtConfig.refreshTokenExpiresIn
93
93
);
94
94
-
const appUrl = configService.get().app.appUrl;
95
95
-
const nodeOauthClient = OAuthClientFactory.createClient(db, appUrl);
94
94
+
const nodeOauthClient = OAuthClientFactory.createClient(
95
95
+
db,
96
96
+
oauthConfig.baseUrl
97
97
+
);
96
98
const oauthProcessor = new AtProtoOAuthProcessor(nodeOauthClient);
97
99
const userAuthService = new UserAuthenticationService(userRepository);
98
100
const atProtoAgentService = new ATProtoAgentService(nodeOauthClient);