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: c54b91b0ce5a229996f8b78dbb4e18bf5259ac90 (plain)
1
2
3
4
5
6
7
8
module CalendarHelper
  def calendar_url_options
    { format: :ics,
      feed_token: current_user.try(:feed_token),
      due_date: Issue::DueNextMonthAndPreviousTwoWeeks.name,
      sort: 'closest_future_date' }
  end
end