Sha256: fc6ee2bbd63b47cfe605644fa7b8f342fc78abef7d4d182d8b1636ef45196a38

Contents?: true

Size: 825 Bytes

Versions: 2

Compression:

Stored size: 825 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: 'stores/:id/:style/:basename.:extension',
    path: '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

2 entries across 2 versions & 1 rubygems

Version Path
solidus_multi_domain-1.1.2 app/models/spree/store_decorator.rb
solidus_multi_domain-1.1.1 app/models/spree/store_decorator.rb