Point to Giggity from the schedule page

Tell users that they can also view schedules in an android app.
This commit is contained in:
Henne Vogelsang 2019-05-20 15:43:54 +02:00
parent a8ad134706
commit 4dc618810b
No known key found for this signature in database
GPG key ID: 9D6164C2955FADE0
5 changed files with 35 additions and 0 deletions

View file

@ -44,6 +44,9 @@ class SchedulesController < ApplicationController
end
@selected_schedules_ids.compact!
@event_schedules_by_room_id = event_schedules.select { |s| @selected_schedules_ids.include?(s.schedule_id) }.group_by(&:room_id)
@qr_code = RQRCode::QRCode.new(conference_schedule_url).as_svg(offset: 20, color: '000',
shape_rendering: 'crispEdges',
module_size: 11)
end
end
end