mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08:00
38 lines
993 B
Ruby
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
|
|
#
|