Sha256: 3e4bd30237723b66c1c1081aaa40aaf1fa3dd5cbb03bcbb65671a9f0ea1a1c9a
Contents?: true
Size: 457 Bytes
Versions: 269
Compression:
Stored size: 457 Bytes
Contents
class ActivityObjectActivity < ActiveRecord::Base belongs_to :activity, :dependent => :destroy belongs_to :activity_object before_create :default_object_type private # Default objects are direct objects. http://activitystrea.ms/head/atom-activity.html#activity.object # Other type of objects are targets. http://activitystrea.ms/head/atom-activity.html#activity.target def default_object_type self.object_type ||= "object" end end
Version data entries
269 entries across 269 versions & 4 rubygems