Adding Events

Seeing as we’re working on a calendar application, it would make sense that the main feature of the application is the ability to add events to the calendar.

We’re working with google calendars, meaning anything that needs to be added to an event will have to be done with Calendar API. This will be done using ‘events.insert()’. This will allow us to pass a calendar ID – which will be the email address of the club or society that is adding the event – and an ‘event’, which will contain all of the details of the event.

Once added to a calendar, all users will be able to view the event that was added – both on the main calendar which is the default view of the application, and on the calendar of the club/society the event is organized by.

We’ve decicded to impliment this in Node.js.

Leave a comment