gitlabhq/app/models/event.rb

37 lines
732 B
Ruby
Raw Normal View History

2012-02-28 14:09:23 +01:00
class Event < ActiveRecord::Base
Created = 1
Updated = 2
Closed = 3
Reopened = 4
Pushed = 5
Commented = 6
2012-02-28 14:09:23 +01:00
belongs_to :project
belongs_to :target, :polymorphic => true
2012-02-28 14:09:23 +01:00
serialize :data
def self.determine_action(record)
if [Issue, MergeRequest].include? record.class
Event::Created
elsif record.kind_of? Note
Event::Commented
end
end
2012-02-28 14:09:23 +01:00
end
# == Schema Information
#
# Table name: events
#
# id :integer not null, primary key
# target_type :string(255)
# target_id :integer
# title :string(255)
# data :text
# project_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# action :integer
2012-02-28 14:09:23 +01:00
#