mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-17 13:44:09 +00:00
8 lines
263 B
Ruby
8 lines
263 B
Ruby
class Commercial < ActiveRecord::Base
|
|
belongs_to :commercialable, polymorphic: true
|
|
|
|
validates :commercial_id, presence: true
|
|
validates :commercial_type, presence: true
|
|
|
|
validates :commercial_type, inclusion: { in: CONFIG['commercial_types'].values }
|
|
end
|