Skip to content

Commit 1bb6cec

Browse files
committed
Add new event
1 parent beae368 commit 1bb6cec

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

src/globals/events.js

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1+
/**
2+
* @typedef JSMNEvent
3+
* @type {object}
4+
* @property {string} title - event title.
5+
* @property {Date} date - event date, be sure to include timezone info.
6+
* @property {string} link - link to meetup/event page.
7+
* @property {string} location - location of event.
8+
* @property {boolean} [hidden] - hide it from the site if true.
9+
*/
10+
11+
/**
12+
* @type {JSMNEvent[]}
13+
*/
114
module.exports = [
215
{
3-
title: 'November Meetup',
4-
date: new Date('2020-11-25T18:30-06:00'),
5-
link: 'https://www.meetup.com/JavaScriptMN/',
16+
title: 'End of the Year Event: Pizza Night',
17+
date: new Date('2020-12-09T18:00-06:00'),
18+
link: 'https://www.meetup.com/JavaScriptMN/events/hmzgxrybcpbhc/',
619
location: 'Virtual',
7-
hidden: true,
820
},
921
{
1022
title: 'October Event: Shalanah Dawson, Ryan Rampersad, Brian Mitchell',

0 commit comments

Comments
 (0)