Files
openfoodnetwork/app/models/enterprise_group.rb
2013-10-30 14:46:49 +11:00

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