mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
7 lines
227 B
Ruby
7 lines
227 B
Ruby
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class TextModule < ApplicationModel
|
|
validates :name, presence: true
|
|
validates :content, presence: true
|
|
notify_clients_support
|
|
end
|