Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/finders/concerns/finder_methods.rb')
-rw-r--r--app/finders/concerns/finder_methods.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/finders/concerns/finder_methods.rb b/app/finders/concerns/finder_methods.rb
index ce6001a01d7..a9124e5c56c 100644
--- a/app/finders/concerns/finder_methods.rb
+++ b/app/finders/concerns/finder_methods.rb
@@ -2,20 +2,20 @@
module FinderMethods
# rubocop: disable CodeReuse/ActiveRecord
- def find_by!(*args)
- raise_not_found_unless_authorized execute.reorder(nil).find_by!(*args)
+ def find_by!(...)
+ raise_not_found_unless_authorized execute.reorder(nil).find_by!(...)
end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
- def find_by(*args)
- if_authorized execute.reorder(nil).find_by(*args)
+ def find_by(...)
+ if_authorized execute.reorder(nil).find_by(...)
end
# rubocop: enable CodeReuse/ActiveRecord
# rubocop: disable CodeReuse/ActiveRecord
- def find(*args)
- raise_not_found_unless_authorized execute.reorder(nil).find(*args)
+ def find(...)
+ raise_not_found_unless_authorized execute.reorder(nil).find(...)
end
# rubocop: enable CodeReuse/ActiveRecord