rosa-build/app/models/activity_feed.rb

20 lines
534 B
Ruby
Raw Normal View History

class ActivityFeed < ActiveRecord::Base
CODE = ['git_delete_branch_notification', 'git_new_push_notification', 'new_comment_commit_notification']
2012-03-15 17:52:54 +00:00
TRACKER = ['issue_assign_notification', 'new_comment_notification', 'new_issue_notification']
BUILD = ['build_list_notification']
WIKI = ['wiki_new_commit_notification']
2012-03-15 17:52:54 +00:00
belongs_to :user
serialize :data
default_scope { order created_at: :desc }
scope :outdated, -> { offset(100) }
2012-03-15 17:52:54 +00:00
self.per_page = 10
def partial
'home/partials/' + self.kind
end
end