Commit 4e5e26a0 authored by Dmytro Zaporozhets's avatar Dmytro Zaporozhets

Merge branch 'pl-remove-unused-unassigned-filter' into 'master'

Remove unused IssuesHelper#unassigned_filter

See merge request gitlab-org/gitlab!29846
parents f1ef6fdc 4447a15b
...@@ -9,13 +9,6 @@ module IssuesHelper ...@@ -9,13 +9,6 @@ module IssuesHelper
classes.join(' ') classes.join(' ')
end end
# Returns an OpenStruct object suitable for use by <tt>options_from_collection_for_select</tt>
# to allow filtering issues by an unassigned User or Milestone
def unassigned_filter
# Milestone uses :title, Issue uses :name
OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned')
end
def url_for_issue(issue_iid, project = @project, options = {}) def url_for_issue(issue_iid, project = @project, options = {})
return '' if project.nil? return '' if project.nil?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment