Files
fetsite/app/models/fetmeeting.rb
2014-08-27 15:22:47 +02:00

12 lines
304 B
Ruby

class Fetmeeting < ActiveRecord::Base
attr_accessible :tnlist, :typ, :calentry_attributes
has_many :fetmeetingtops
validates :typ, presence: true
validates :calentry, presence: true
has_one :calentry , as: :object
accepts_nested_attributes_for :calentry
def public
true
end
end