2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-07-30 12:05:46 +00:00
|
|
|
class Ticket::Article < ApplicationModel
|
2014-10-17 12:15:54 +00:00
|
|
|
load 'ticket/article/assets.rb'
|
2013-08-19 06:29:49 +00:00
|
|
|
include Ticket::Article::Assets
|
2014-10-17 12:15:54 +00:00
|
|
|
load 'ticket/article/history_log.rb'
|
2013-09-25 19:50:28 +00:00
|
|
|
include Ticket::Article::HistoryLog
|
2014-10-17 12:15:54 +00:00
|
|
|
load 'ticket/article/activity_stream_log.rb'
|
2013-09-29 21:37:49 +00:00
|
|
|
include Ticket::Article::ActivityStreamLog
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2012-07-30 12:05:46 +00:00
|
|
|
belongs_to :ticket
|
2014-06-08 22:01:20 +00:00
|
|
|
belongs_to :type, :class_name => 'Ticket::Article::Type'
|
|
|
|
belongs_to :sender, :class_name => 'Ticket::Article::Sender'
|
|
|
|
belongs_to :created_by, :class_name => 'User'
|
2015-01-02 22:34:37 +00:00
|
|
|
belongs_to :updated_by, :class_name => 'User'
|
2013-06-29 00:13:03 +00:00
|
|
|
after_create :notify_clients_after_create
|
|
|
|
after_update :notify_clients_after_update
|
|
|
|
after_destroy :notify_clients_after_destroy
|
2012-07-30 12:05:46 +00:00
|
|
|
|
2013-10-05 12:56:03 +00:00
|
|
|
activity_stream_support :ignore_attributes => {
|
2014-06-08 22:01:20 +00:00
|
|
|
:type_id => true,
|
|
|
|
:sender_id => true,
|
2013-10-05 12:56:03 +00:00
|
|
|
}
|
2013-09-29 21:37:49 +00:00
|
|
|
|
|
|
|
history_support :ignore_attributes => {
|
2014-06-08 22:01:20 +00:00
|
|
|
:type_id => true,
|
|
|
|
:sender_id => true,
|
2013-09-29 21:37:49 +00:00
|
|
|
}
|
2013-09-28 00:07:11 +00:00
|
|
|
|
2012-07-30 12:05:46 +00:00
|
|
|
class Flag < ApplicationModel
|
|
|
|
end
|
|
|
|
|
|
|
|
class Sender < ApplicationModel
|
2012-10-14 21:00:33 +00:00
|
|
|
validates :name, :presence => true
|
2012-07-30 12:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
class Type < ApplicationModel
|
2012-10-14 21:00:33 +00:00
|
|
|
validates :name, :presence => true
|
2012-07-30 12:05:46 +00:00
|
|
|
end
|
|
|
|
end
|