djluck / office365-events

A meteor package to create, update and delete calendar events using the office 365 REST api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Office-365-events

A meteor package that exposes a fluent interface for working with the office 365 events REST API.

##How do I use this package? Please refer to the Wiki

##Sample code var createdEvent = Office365.event .runByUser(userId) .subject("This is the subject") .bodyHtml("This is the body Its using html!") .attendees(Meteor.users.find().fetch()) .location("The test room") .startsAt(moment().add(2, "days").tz("Europe/London")) .endsAt(moment().add(2, "days").add(1, "hour").tz("Europe/London")) .requireAResponse(false) .create();

The Wiki contains more examples and notes on using this package.

##Unit tests You can run the package unit tests with meteor test-packages wiseguyeh:office-365-events

About

A meteor package to create, update and delete calendar events using the office 365 REST api


Languages

Language:JavaScript 100.0%