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

rss_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea5d2932ef42c08a9f7762c70c07e5fbdcf788ca (plain)
1
2
3
4
5
module RssHelper
  def rss_url_options
    { format: :atom, private_token: current_user.try(:private_token) }
  end
end