socialforge/app/models/activity.rb

9 lines
257 B
Ruby
Raw Normal View History

class Activity < ActiveRecord::Base
attr_accessible :act_id, :act_type, :user_id
belongs_to :act, :polymorphic => true
belongs_to :user
validates :act_id, presence: true
validates :act_type, presence: true
validates :user_id, presence: true
end