discourse/app/models/form_template.rb
2024-09-10 08:11:44 -07:00

38 lines
993 B
Ruby

# frozen_string_literal: true
class FormTemplate < ActiveRecord::Base
validates :name,
presence: true,
uniqueness: true,
length: {
maximum: -> { SiteSetting.max_form_template_title_length },
}
validates :template,
presence: true,
length: {
maximum: -> { SiteSetting.max_form_template_content_length },
}
validates_with FormTemplateYamlValidator, if: ->(ft) { ft.template }
has_many :category_form_templates, dependent: :destroy
has_many :categories, through: :category_form_templates
class NotAllowed < StandardError
end
end
# == Schema Information
#
# Table name: form_templates
#
# id :bigint not null, primary key
# name :string not null
# template :text not null
# created_at :datetime not null
# updated_at :datetime not null
#
# Indexes
#
# index_form_templates_on_name (name) UNIQUE
#