This commit is contained in:
tiago.kayaya
2021-01-29 14:13:31 +01:00
parent ba5baf3fe8
commit e1d06247cf
7 changed files with 154 additions and 23 deletions
+9 -4
View File
@@ -46,14 +46,19 @@ export class CalModalPage implements OnInit {
profile:string;
constructor(public formBuilder: FormBuilder, private modalCtrl: ModalController, private eventService: EventsService, private alertController:AlertService,
private navParams: NavParams) {
constructor(
public formBuilder: FormBuilder,
private modalCtrl: ModalController,
private eventService: EventsService,
private alertController:AlertService,
private navParams: NavParams
)
{
this.postEvent = new Event();
this.eventBody = { BodyType : "1", Text : ""};
this.postEvent.Body = this.eventBody;
this.profile = this.navParams.get('profile');
}
}
ngOnInit() {