Sha256: 5252187ce6a81bf9a4ad47ba4922431489d749bc72a6d54aef834897f2d4b0b9
Contents?: true
Size: 857 Bytes
Versions: 8
Compression:
Stored size: 857 Bytes
Contents
Spree::Store.class_eval do has_and_belongs_to_many :products, join_table: 'spree_products_stores' has_many :taxonomies has_many :orders has_many :store_shipping_methods has_many :shipping_methods, through: :store_shipping_methods has_and_belongs_to_many :promotion_rules, class_name: 'Spree::Promotion::Rules::Store', join_table: 'spree_promotion_rules_stores', association_foreign_key: 'promotion_rule_id' has_attached_file :logo, styles: { mini: '48x48>', small: '100x100>', medium: '250x250>' }, default_style: :medium, url: '/spree/stores/:id/:style/:basename.:extension', path: ':rails_root/public/spree/stores/:id/:style/:basename.:extension', convert_options: { all: '-strip -auto-orient' } validates_attachment_file_name :logo, matches: [/png\Z/i, /jpe?g\Z/i], if: -> { respond_to?(:logo_file_name) } end
Version data entries
8 entries across 8 versions & 1 rubygems