diff --git a/.dockerignore b/.dockerignore index 3724968..74c246b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,4 @@ .drone.yml node_modules -dist .idea +**/node_modules \ No newline at end of file diff --git a/src/service/calendar/index.ts b/src/service/calendar/index.ts index 1719eb6..a0e3617 100644 --- a/src/service/calendar/index.ts +++ b/src/service/calendar/index.ts @@ -8,7 +8,7 @@ export class CalendarService { constructor( key: KeyFile, - private timeZone: string, + private timeZone: string, // idk, use it someday private log: (...vals: any) => void ) { this.auth = new google.auth.JWT( @@ -61,11 +61,9 @@ export class CalendarService { description, start: { dateTime: start.toISOString(), - timeZone: this.timeZone, }, end: { dateTime: end.toISOString(), - timeZone: this.timeZone, }, iCalUID: eventId, },