1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 01:31:34 +02:00

Merge pull request #952 from fosscord/dev/endpoints-in-ping

Merge /dev/endpoints-in-ping to master
This commit is contained in:
Chris Chrome 2023-01-18 12:14:05 -07:00 committed by GitHub
commit 313ba7a27b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,7 @@ import { config } from "dotenv";
const router = Router();
router.get("/", route({}), async (req: Request, res: Response) => {
const { cdn, gateway } = Config.get();
const { cdn, gateway, api } = Config.get();
const IdentityForm = {
cdn: cdn.endpointPublic || process.env.CDN || "http://localhost:3001",
@ -31,6 +31,8 @@ router.get("/", route({}), async (req: Request, res: Response) => {
gateway.endpointPublic ||
process.env.GATEWAY ||
"ws://localhost:3002",
defaultApiVersion: api.defaultVersion ?? 9,
apiEndpoint: api.endpointPublic ?? "/api",
};
res.json(IdentityForm);

View File

@ -20,4 +20,5 @@ export class ApiConfiguration {
defaultVersion: string = "9";
activeVersions: string[] = ["6", "7", "8", "9"];
useFosscordEnhancements: boolean = true;
endpointPublic: string = "/api";
}