Commit 044a195b authored by Clement Ho's avatar Clement Ho

Add comments to issuable finder

parent 757bc8ec
...@@ -174,6 +174,7 @@ class IssuableFinder ...@@ -174,6 +174,7 @@ class IssuableFinder
end end
def no_assignee? def no_assignee?
# Assignee_id takes precedence over assignee_username
params[:assignee_id] == NONE || params[:assignee_username] == NONE params[:assignee_id] == NONE || params[:assignee_username] == NONE
end end
...@@ -199,6 +200,7 @@ class IssuableFinder ...@@ -199,6 +200,7 @@ class IssuableFinder
end end
def no_author? def no_author?
# author_id takes precedence over author_username
params[:author_id] == NONE || params[:author_username] == NONE params[:author_id] == NONE || params[:author_username] == NONE
end end
......
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