debian-mirror-gitlab/app/helpers/explore_helper.rb

18 lines
383 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
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)
2015-09-25 12:07:36 +05:30
path = explore_projects_path
2015-04-26 12:48:37 +05:30
path << "?#{options.to_param}"
path
end
end