text_module.rb 350 B

123456789
  1. # Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
  2. class TextModule < ApplicationModel
  3. validates :name, :presence => true
  4. validates :content, :presence => true
  5. after_create :notify_clients_after_create
  6. after_update :notify_clients_after_update
  7. after_destroy :notify_clients_after_destroy
  8. end