Skip to content

Commit

Permalink
update tool config status service
Browse files Browse the repository at this point in the history
  • Loading branch information
sdinkov committed Jan 20, 2025
1 parent 163dc29 commit 109e409
Show file tree
Hide file tree
Showing 5 changed files with 671 additions and 465 deletions.
1 change: 1 addition & 0 deletions apps/server/src/modules/server/admin-api-server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const config: AdminApiServerConfig = {
) as string,
PUBLIC_BACKEND_URL: Configuration.get('PUBLIC_BACKEND_URL') as string,
FEATURE_VIDIS_MEDIA_ACTIVATIONS_ENABLED: Configuration.get('FEATURE_VIDIS_MEDIA_ACTIVATIONS_ENABLED') as boolean,
FEATURE_SCHULCONNEX_MEDIA_LICENSE_ENABLED: Configuration.get('FEATURE_SCHULCONNEX_MEDIA_LICENSE_ENABLED') as boolean,
};

export const adminApiServerConfig = () => config;
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { AuthorizationModule } from '@modules/authorization';
import { SchoolLicenseModule } from '@modules/school-license';
import { UserModule } from '@modules/user';
import { UserLicenseModule } from '@modules/user-license';
import { Module } from '@nestjs/common';
import { LoggerModule } from '@src/core/logger';
Expand All @@ -26,6 +27,7 @@ import { ContextExternalToolValidationService } from './service/context-external
LoggerModule,
UserLicenseModule,
SchoolLicenseModule,
UserModule,
AuthorizationModule,
],
providers: [
Expand Down
Loading

0 comments on commit 109e409

Please sign in to comment.