themoose3 / Recreo

1 stars 1 forks source link

Create Event #12

Open SideokCalebYou opened 7 years ago

SideokCalebYou commented 7 years ago
  1. AddEventViewController is a form where you can specify event's name, venue, date/time, description, and invitees. It should send a SMS to all invitees.
  2. ContactViewController displays list of contacts from contact list. Selected invitees will be sent back to AddEventViewController.
  3. GalleryViewController should display images and have ability to upload / delete photos.
SideokCalebYou commented 7 years ago
  1. Created CreateEventViewController for creating event [FINISHED]
  2. Added a button for getting contacts from ContactListViewController [FINISHED]
  3. ContactListViewController shows all user's contacts, and a user can pick multiple users.[FINISHED]
  4. Picked(invited) users will be stored in a dictionary. key-value will be `["name":"phoneNumber"]
  5. Once a user invited all friends and clicked the create button.
  6. All typed information will be stored in Firebase Database.
SideokCalebYou commented 7 years ago
SideokCalebYou commented 7 years ago

Create an event button is temporarily added on ProfileViewController, and it shows CreateEventViewController. After putting all information with adding friends, it writes the information to our Firebase database. I checked that the information can read on our Firebase Database. So, this issue is resolved.