Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 915 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 915 Bytes

ical-tentative

A way to make all events from a iCal subscription tentative in Outlook.

⚙ How To

The easiest way to use this service is by using the form found on the website. The generated link consists of the url: https://tentative.schutter.xyz/ical/ followed by the original iCal url encoded as a uri. For example in JavaScript this can be done with the following snippet:

const iCalUrl = encodeURIComponent('https://...')
const url = `https://tentative.schutter.xyz/ical/${iCalUrl}`

💻 Developing

src/index.ts calls the request handler in src/handler.ts, and will return the modified iCal.

👀 Previewing and Publishing

For information on how to preview and publish your worker, please see the Wrangler docs.