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

29 lines
666 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)
2016-04-02 18:10:28 +05:30
path = if explore_controller?
explore_projects_path
elsif current_action?(:starred)
starred_dashboard_projects_path
else
dashboard_projects_path
end
2015-04-26 12:48:37 +05:30
path << "?#{options.to_param}"
path
end
2016-04-02 18:10:28 +05:30
def explore_controller?
controller.class.name.split("::").first == "Explore"
end
2015-04-26 12:48:37 +05:30
end