Commit ee5eed54f974b7c7a88f84936e95b4acaac7cdfb
1 parent
4464c3e5
Exists in
relation
and in
1 other branch
Removed relation option [skip ci]
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
lib/searchkick.rb
... | ... | @@ -88,7 +88,7 @@ module Searchkick |
88 | 88 | @server_below7 |
89 | 89 | end |
90 | 90 | |
91 | - def self.search(term = "*", model: nil, relation: nil, **options, &block) | |
91 | + def self.search(term = "*", model: nil, **options, &block) | |
92 | 92 | options = options.dup |
93 | 93 | klass = model |
94 | 94 | |
... | ... | @@ -114,7 +114,7 @@ module Searchkick |
114 | 114 | end |
115 | 115 | |
116 | 116 | options = options.merge(block: block) if block |
117 | - if relation || (relation.nil? && Searchkick.relation) | |
117 | + if Searchkick.relation | |
118 | 118 | Searchkick::Relation.new(klass, term, **options) |
119 | 119 | else |
120 | 120 | query = Searchkick::Query.new(klass, term, **options) | ... | ... |