Skip to content
Snippets Groups Projects
Commit cca76de8 authored by Teal's avatar Teal
Browse files

fix ical time zone

parent eadc4a7f
No related branches found
No related tags found
No related merge requests found
......@@ -70,8 +70,8 @@ class AssignmentsController < ApplicationController
other_users = other_users - [ @user.name ]
event = Icalendar::Event.new
event.dtstart = Icalendar::Values::DateTime.new(session.starts_at, tzid: session.starts_at.zone)
event.dtend = Icalendar::Values::DateTime.new(session.ends_at, tzid: session.ends_at.zone)
event.dtstart = Icalendar::Values::DateTime.new(session.starts_at)
event.dtend = Icalendar::Values::DateTime.new(session.ends_at)
event.summary = [session.title, session.stage.name].join(' @ ')
event.description = other_users.join(', ') + "\n\n" + helpers.strip_tags(session.description)
event.location = [session.stage.name, session.conference.name].join(' @ ')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment