class Alert < ActiveRecord::Base #GEMS USED #ACCESSORS attr_accessible :event_type, :actor, :subject, :secondary_subject, :message, :link #ASSOCIATIONS belongs_to :actor, :polymorphic => true belongs_to :subject, :polymorphic => true belongs_to :secondary_subject, :polymorphic => true #VALIDATIONS #CALLBACKS #QUERY SCOPES #CUSTOM SCOPES #SORTING SCOPES #OTHER STUFF #PRIVATE STUFF private end