dashboard_helper.rb 234 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 module DashboardHelper def dashboard_filter_path(entity, options={}) case entity when 'issue' then dashboard_issues_path(options) when 'merge_request' dashboard_merge_requests_path(options) end end end