Skip to content

Commit

Permalink
fix: epg service bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristiaanScheermeijer committed Jan 30, 2024
1 parent ca38d06 commit d6f7c84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/common/src/modules/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import AccountController from '../stores/AccountController';
import ProfileController from '../stores/ProfileController';
import FavoritesController from '../stores/FavoritesController';
import AppController from '../stores/AppController';
import EpgController from '../stores/EpgController';

// Epg services
import EpgService from '../services/EpgService';
Expand Down Expand Up @@ -47,7 +48,6 @@ import { isCleengIntegrationType, isJwpIntegrationType } from './functions/calcu

// Common services
container.bind(ConfigService).toSelf();
container.bind(EpgService).toSelf();
container.bind(WatchHistoryService).toSelf();
container.bind(FavoriteService).toSelf();
container.bind(GenericEntitlementService).toSelf();
Expand All @@ -58,6 +58,7 @@ container.bind(SettingsService).toSelf();
container.bind(AppController).toSelf();
container.bind(WatchHistoryController).toSelf();
container.bind(FavoritesController).toSelf();
container.bind(EpgController).toSelf();

// Integration controllers
container.bind(AccountController).toSelf();
Expand Down

0 comments on commit d6f7c84

Please sign in to comment.