Skip to content

Commit 7ba4ca1

Browse files
authored
chore(version-endpoint): remove auth0 client id from version endpoint (#505)
* remove auth0 client id from version endpoint * fix linter warning
1 parent 665a5a8 commit 7ba4ca1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/server.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { join } from 'path';
66
import cors from 'cors';
77
import router from './server/infrastructure/api.routes';
88
import { httpErrorHandler } from './server/infrastructure/errors';
9-
import { environment } from './app/environments/environment';
109
import { AppDataSource } from './server/infrastructure/database';
1110
import 'reflect-metadata';
1211

@@ -43,7 +42,6 @@ server.get('/version', (_, res) =>
4342
version: process.env['VERSION'] || 'unknown',
4443
environment: process.env['ENVIRONMENT'] || 'unknown (local)',
4544
name: 'ahb-tabellen',
46-
auth0ClientId: environment.auth0ClientId,
4745
})
4846
);
4947
server.get('/health', (_, res) => res.send());

0 commit comments

Comments
 (0)