-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added location, geo, url and organizer fields
- Loading branch information
sp
committed
Oct 17, 2022
1 parent
ae482be
commit 95c9a64
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,13 @@ Deno.test({ | |
beginDate: [2022, 9, 6, 9, 30], | ||
endDate: [2022, 9, 6, 10], | ||
desc: 'Implement a module to generate .ics files', | ||
organizer: { | ||
name: 'Sam Worthington', | ||
email: '[email protected]' | ||
}, | ||
url: 'https://www.google.com/', | ||
location: 'ABC Tank Warehouse', | ||
geo: { lat: 10.4, lon: 44.5 } | ||
}; | ||
|
||
const cfg2: EventConfig = { | ||
|