mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
233 B
Ruby
11 lines
233 B
Ruby
class EnterpriseGroup < ActiveRecord::Base
|
|
acts_as_list
|
|
|
|
has_and_belongs_to_many :enterprises
|
|
|
|
validates :name, presence: true
|
|
|
|
scope :by_position, order('position ASC')
|
|
scope :on_front_page, where(on_front_page: true)
|
|
end
|