Created
February 20, 2014 22:44
-
-
Save binaryphile/9124857 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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' | |
| Spree.config do |config| | |
| # Example: | |
| # Uncomment to override the default site name. | |
| # config.site_name = "Spree Demo Site" | |
| config.allow_ssl_in_staging = false | |
| end | |
| Spree.user_class = "Spree::User" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment