forked from Trustie/forgeplus
30 lines
715 B
Ruby
30 lines
715 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: project_actions
|
|
#
|
|
# id :integer not null, primary key
|
|
# project_id :integer
|
|
# type :string(255)
|
|
# user_id :integer
|
|
# event_extra :text(65535)
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_project_actions_on_project_id (project_id)
|
|
#
|
|
|
|
|
|
class ProjectActions::IssueCommentEvent < ProjectAction
|
|
def self.build(project, user, issue, journal)
|
|
project_action = new(project: project, user: user)
|
|
project_action.event_extra = {
|
|
issue_id: issue.id,
|
|
issue_number: issue.project_issues_index,
|
|
body: journal.notes
|
|
}.as_json
|
|
project_action.save!
|
|
end
|
|
end
|