mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-20 00:37:26 +00:00
11 lines
269 B
Ruby
11 lines
269 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
class ShippingCategory < ActiveRecord::Base
|
|
validates :name, presence: true
|
|
has_many :products
|
|
has_many :shipping_method_categories
|
|
has_many :shipping_methods, through: :shipping_method_categories
|
|
end
|
|
end
|