gitlab-org--gitlab-foss/app/helpers/dashboard_helper.rb

39 lines
828 B
Ruby
Raw Normal View History

2012-11-21 05:24:05 +00:00
module DashboardHelper
def filter_path(entity, options={})
2012-11-27 04:29:11 +00:00
exist_opts = {
status: params[:status],
scope: params[:scope],
2012-11-27 04:29:11 +00:00
project_id: params[:project_id],
}
options = exist_opts.merge(options)
path = request.path
path << "?#{options.to_param}"
path
2012-11-21 05:24:05 +00:00
end
2012-11-21 06:14:05 +00:00
def entities_per_project(project, entity)
case entity.to_sym
when :issue then @issues.where(project_id: project.id)
when :merge_request then @merge_requests.where(target_project_id: project.id)
else
[]
end.count
2012-11-21 06:14:05 +00:00
end
def projects_dashboard_filter_path(options={})
exist_opts = {
sort: params[:sort],
scope: params[:scope],
group: params[:group],
}
options = exist_opts.merge(options)
path = request.path
path << "?#{options.to_param}"
path
end
2012-11-21 05:24:05 +00:00
end