class WinewooCore::Services::Finders::Wines::ListOfWinesFinder

Public Instance Methods

find() click to toggle source
# File lib/winewoo_core/services/finders/wines/list_of_wines_finder.rb, line 4
def find
  wines = @filters.list_of_wines.map do |w|
    wine =  Wine.find(w[:id])
    wine if wine.published? && wine.official?
    # TODO UNOFFICIALS
    # wine if wine.published? && wine.official?
  end
  return wines.compact, nil, nil
end