mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
11 lines
301 B
Ruby
11 lines
301 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Validations::TicketArticleValidator
|
|
class Default < Backend
|
|
def validate_body
|
|
return if @record.body.present?
|
|
|
|
@record.errors.add :base, __("Need at least an 'article body' field.")
|
|
end
|
|
end
|
|
end
|