mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
10 lines
356 B
Text
10 lines
356 B
Text
# frozen_string_literal: true
|
|
|
|
wb = xlsx_package.workbook
|
|
if @event_export_option == 'confirmed'
|
|
render partial: 'confirmed_events', locals: {:wb => wb}
|
|
elsif @event_export_option == 'all'
|
|
render partial: 'all_events', locals: {:wb => wb}
|
|
elsif @event_export_option == 'all_with_comments'
|
|
render partial: 'all_with_comments', locals: {:wb => wb}
|
|
end
|