Class: Spree::Countries::Find

Inherits:
BaseFinder show all
Defined in:
app/finders/spree/countries/find.rb

Instance Attribute Summary

Attributes inherited from BaseFinder

#params, #scope

Instance Method Summary collapse

Constructor Details

#initialize(scope:, params:) ⇒ Find

Returns a new instance of Find.



4
5
6
7
8
# File 'app/finders/spree/countries/find.rb', line 4

def initialize(scope:, params:)
  @scope = scope

  @shippable = String(params[:filter][:shippable]) unless params[:filter].nil?
end

Instance Method Details

#executeObject



10
11
12
13
14
# File 'app/finders/spree/countries/find.rb', line 10

def execute
  countries = by_shippability(scope)

  countries
end