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
+4 -4
View File
@@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { AlertController, AnimationController } from '@ionic/angular';
import { WsChatMethodsService } from './chat/ws-chat-methods.service';
import { ChatSystemService } from './chat/chat-system.service';
import { ToastService } from './toast.service';
@Injectable({
@@ -12,7 +12,7 @@ export class AlertService {
public alertController: AlertController,
private animationController: AnimationController,
private toastService: ToastService,
public wsChatMethodsService: WsChatMethodsService,
public ChatSystemService: ChatSystemService,
) { }
async presentAlert(message:string) {
@@ -58,10 +58,10 @@ export class AlertService {
handler: () => {
//const loader = this.toastService.loading();
this.wsChatMethodsService.deleteMessage(msgId).then(() => {
this.ChatSystemService.deleteMessage(msgId).then(() => {
room.deleteMessage(msgId)
})
//this.wsChatMethodsService.subscribeToRoomUpdate(room._id, room);
//this.ChatSystemService.subscribeToRoomUpdate(room._id, room);
//loader.remove();
}
}