signature.rb 265 B

123456
  1. # Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
  2. class Signature < ApplicationModel
  3. has_many :groups, :after_add => :cache_update, :after_remove => :cache_update
  4. validates :name, :presence => true
  5. end