summaryrefslogtreecommitdiff
path: root/app/helpers/explore_helper.rb
blob: 7616fe6bad8b9ccda5b3f2406fe25b6817a86c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module ExploreHelper
  def explore_projects_filter_path(options={})
    exist_opts = {
      sort: params[:sort],
      scope: params[:scope],
      group: params[:group],
      tag: params[:tag],
      visibility_level: params[:visibility_level],
    }

    options = exist_opts.merge(options)

    path = request.path
    path << "?#{options.to_param}"
    path
  end
end