2024-06-14 08:57:13 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class TextField < ApplicationRecord
|
2024-06-17 13:53:09 +00:00
|
|
|
has_one :character_sheet_feature, as: :featurable
|
|
|
|
has_one :character_sheet_section, through: :character_sheet_feature
|
|
|
|
accepts_nested_attributes_for :character_sheet_feature, allow_destroy: true
|
2024-06-14 08:57:13 +00:00
|
|
|
|
|
|
|
has_rich_text :content
|
|
|
|
|
|
|
|
validates :name, presence: true,
|
|
|
|
length: { maximum: 100 }
|
|
|
|
end
|