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-10-22 13:00:26 +00:00
|
|
|
class TextModule < ApplicationModel
|
2013-07-17 13:57:12 +00:00
|
|
|
validates :name, :presence => true
|
|
|
|
validates :content, :presence => true
|
|
|
|
after_create :notify_clients_after_create
|
|
|
|
after_update :notify_clients_after_update
|
|
|
|
after_destroy :notify_clients_after_destroy
|
2013-06-12 15:59:58 +00:00
|
|
|
end
|