gitlab-org--gitlab-foss/app/models/todo.rb

54 lines
1.2 KiB
Ruby
Raw Normal View History

2016-02-12 13:17:42 +00:00
# == Schema Information
#
2016-02-20 13:59:59 +00:00
# Table name: todos
2016-02-12 13:17:42 +00:00
#
# id :integer not null, primary key
# user_id :integer not null
# project_id :integer not null
# target_id :integer not null
# target_type :string not null
# author_id :integer
# note_id :integer
2016-02-18 13:51:53 +00:00
# action :integer not null
2016-02-12 13:17:42 +00:00
# state :string not null
# created_at :datetime
# updated_at :datetime
#
2016-02-20 13:59:59 +00:00
class Todo < ActiveRecord::Base
2016-02-12 18:45:44 +00:00
ASSIGNED = 1
MENTIONED = 2
2016-02-12 18:45:44 +00:00
2016-02-12 13:17:42 +00:00
belongs_to :author, class_name: "User"
belongs_to :note
2016-02-12 13:17:42 +00:00
belongs_to :project
belongs_to :target, polymorphic: true, touch: true
belongs_to :user
2016-02-12 18:45:44 +00:00
delegate :name, :email, to: :author, prefix: true, allow_nil: true
2016-02-12 13:17:42 +00:00
validates :action, :project, :target, :user, presence: true
2016-02-12 18:45:44 +00:00
default_scope { reorder(id: :desc) }
scope :pending, -> { with_state(:pending) }
scope :done, -> { with_state(:done) }
2016-02-12 13:17:42 +00:00
state_machine :state, initial: :pending do
event :done do
transition [:pending, :done] => :done
end
2016-02-12 13:17:42 +00:00
state :pending
state :done
end
2016-02-12 18:45:44 +00:00
2016-02-18 19:16:39 +00:00
def body
if note.present?
note.note
else
target.title
end
end
2016-02-12 13:17:42 +00:00
end