summaryrefslogtreecommitdiff
path: root/app/finders
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2019-02-21 14:12:11 +0100
committerRobert Schilling <rschilling@student.tugraz.at>2019-02-21 14:12:11 +0100
commit56a54c62fba093ae53c8fef309454f38d3778b0f (patch)
treeb322cf001890414daca65528ff1c12ec1a735f4d /app/finders
parent73e3a1cd02c5d2bdaf03d5998ae12bc86de2fa75 (diff)
downloadgitlab-ce-56a54c62fba093ae53c8fef309454f38d3778b0f.tar.gz
Add confidential_only scop to issue model
Diffstat (limited to 'app/finders')
-rw-r--r--app/finders/issues_finder.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/app/finders/issues_finder.rb b/app/finders/issues_finder.rb
index d0a094ea4a6..a34cdf29c80 100644
--- a/app/finders/issues_finder.rb
+++ b/app/finders/issues_finder.rb
@@ -73,17 +73,11 @@ class IssuesFinder < IssuableFinder
by_confidential(issues)
end
- # rubocop: disable CodeReuse/ActiveRecord
def by_confidential(items)
- if params[:confidential] == 'yes'
- items.where('issues.confidential = TRUE')
- elsif params[:confidential] == 'no'
- items.where.not('issues.confidential = TRUE')
- else
- items
- end
+ return items unless params[:confidential].present?
+
+ params[:confidential] == 'yes' ? items.confidential_only : items.public_only
end
- # rubocop: enable CodeReuse/ActiveRecord
def by_due_date(items)
if due_date?