mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
11 lines
252 B
Ruby
11 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CalendarHelper
|
|
def calendar_url_options
|
|
{ format: :ics,
|
|
feed_token: generate_feed_token(:ics),
|
|
due_date: Issue::DueNextMonthAndPreviousTwoWeeks.name,
|
|
sort: 'closest_future_date' }
|
|
end
|
|
end
|