debian-mirror-gitlab/app/helpers/explore_helper.rb
2015-04-26 09:18:37 +02:00

18 lines
374 B
Ruby

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