mirror of
https://github.com/openSUSE/osem.git
synced 2026-05-18 05:33:21 -04:00
11 lines
220 B
Ruby
11 lines
220 B
Ruby
class Vposition < ActiveRecord::Base
|
|
attr_accessible :title, :description, :vday_ids
|
|
|
|
belongs_to :conference
|
|
|
|
has_many :vchoices
|
|
has_many :vdays, :through => :vchoices
|
|
|
|
validates_presence_of :title, :vdays
|
|
end
|