File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import { ILivechatVoipService } from '../../sdk/types/IOmnichannelVoipService' ;
22import { ServiceClass } from '../../sdk/types/ServiceClass' ;
33
4- export class LivechatVoipService extends ServiceClass implements ILivechatVoipService {
4+ export class OmnichannelVoipService extends ServiceClass implements ILivechatVoipService {
55 protected name = 'omnichannel-voip' ;
66
77 getConfiguration ( ) : any {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { RoomService } from './room/service';
99import { TeamService } from './team/service' ;
1010import { UiKitCoreApp } from './uikit-core-app/service' ;
1111import { MediaService } from './image/service' ;
12- import { LivechatVoipService } from './omnichannel-voip/service' ;
12+ import { OmnichannelVoipService } from './omnichannel-voip/service' ;
1313import { VoipService } from './voip/service' ;
1414
1515const { db } = MongoInternals . defaultRemoteCollectionDriver ( ) . mongo ;
@@ -23,4 +23,4 @@ api.registerService(new RoomService(db));
2323api . registerService ( new TeamService ( db ) ) ;
2424api . registerService ( new MediaService ( ) ) ;
2525api . registerService ( new VoipService ( db ) ) ;
26- api . registerService ( new LivechatVoipService ( ) ) ;
26+ api . registerService ( new OmnichannelVoipService ( ) ) ;
You can’t perform that action at this time.
0 commit comments