Files
openfoodnetwork/app/models/application_record.rb
2021-09-02 13:43:22 +01:00

11 lines
234 B
Ruby

# frozen_string_literal: true
class ApplicationRecord < ActiveRecord::Base
include DelegateBelongsTo
include Spree::Core::Permalinks
include Spree::Preferences::Preferable
include Searchable
self.abstract_class = true
end