rename files

This commit is contained in:
Peter Maquiran
2022-09-30 15:13:36 +01:00
parent 64ad7bbc7f
commit 12cf5831a8
36 changed files with 256 additions and 315 deletions
@@ -1,6 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { NavParams } from '@ionic/angular';
import { WsChatMethodsService} from 'src/app/services/chat/ws-chat-methods.service';
import { ChatSystemService } from 'src/app/services/chat/chat-system.service';
@Component({
selector: 'app-chat-message-debugging',
@@ -12,7 +12,7 @@ export class ChatMessageDebuggingPage implements OnInit {
roomId: string
constructor(
public wsChatMethodsService: WsChatMethodsService,
public ChatSystemService: ChatSystemService,
private navParams: NavParams
) { }
@@ -23,7 +23,7 @@ export class ChatMessageDebuggingPage implements OnInit {
}
loadHistory() {
this.wsChatMethodsService.getDmRoom(this.roomId).loadHistory({});
this.ChatSystemService.getDmRoom(this.roomId).loadHistory({});
}
}