1 2 3 4 5 6 7
# frozen_string_literal: true module RssHelper def rss_url_options { format: :atom, feed_token: current_user.try(:feed_token) } end end