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

explore_helper.rb « gitlab « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8e0f482b947115fc90438719e66627944707c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Gitlab
  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 = explore_projects_path
      path << "?#{options.to_param}"
      path
    end
  end
end