This commit is contained in:
tiago.kayaya
2021-04-14 14:10:17 +01:00
parent eb189b6b2a
commit 3e996c7cca
3 changed files with 8 additions and 2 deletions
@@ -1,4 +1,4 @@
import { Component, Input, OnInit } from '@angular/core';
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
import { ModalController, NavParams, PickerController } from '@ionic/angular';
import { ChatService } from 'src/app/services/chat.service';
@@ -15,6 +15,7 @@ export class EditGroupPage implements OnInit {
groupName:string;
room:any;
@Input() roomId:string;
@Output() openGroupContacts:EventEmitter<any> = new EventEmitter<any>();
constructor(
private modalController: ModalController,