Welcome to mirror list, hosted at ThFree Co, Russian Federation.

calendar_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d70a860d468bee0a9a46cf544c9f35801e856c01 (plain)
1
2
3
4
5
6
7
8
9
10
# 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