mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
# Configure Spree Preferences
|
|
#
|
|
# Note: Initializing preferences available within the Admin will overwrite any changes that were made through the user interface when you restart.
|
|
# If you would like users to be able to update a setting with the Admin it should NOT be set here.
|
|
#
|
|
# In order to initialize a setting do:
|
|
# config.setting_name = 'new value'
|
|
|
|
|
|
require 'spree/product_filters'
|
|
require 'open_food_web/searcher'
|
|
|
|
Spree.config do |config|
|
|
config.shipping_instructions = true
|
|
config.checkout_zone = 'Australia'
|
|
config.address_requires_state = true
|
|
config.searcher_class = OpenFoodWeb::Searcher
|
|
|
|
# 109 should be Australia. Hardcoded for CI (Jenkins), where countries are not pre-loaded.
|
|
config.default_country_id = Spree::Country.find_by_name('Australia').andand.id || 109
|
|
|
|
|
|
# -- spree_paypal_express
|
|
# Auto-capture payments. Without this option, payments must be manually captured in the paypal interface.
|
|
config.auto_capture = true
|
|
end
|
|
|
|
|
|
# Add calculators category for enterprise fees
|
|
module Spree
|
|
module Core
|
|
class Environment
|
|
class Calculators
|
|
include EnvironmentExtension
|
|
|
|
attr_accessor :enterprise_fees
|
|
end
|
|
end
|
|
end
|
|
end
|