discourse/app/models/user_field.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class UserField < ActiveRecord::Base
include AnonCacheInvalidator
validates_presence_of :description, :field_type
validates_presence_of :name, unless: -> { field_type == "confirm" }
has_many :user_field_options, dependent: :destroy
accepts_nested_attributes_for :user_field_options
def self.max_length
2048
end
end
# == Schema Information
#
# Table name: user_fields
#
# id :integer not null, primary key
2019-01-11 14:29:56 -05:00
# name :string not null
# field_type :string not null
# created_at :datetime not null
# updated_at :datetime not null
# editable :boolean default(FALSE), not null
2019-01-11 14:29:56 -05:00
# description :string not null
# required :boolean default(TRUE), not null
# show_on_profile :boolean default(FALSE), not null
# position :integer default(0)
2016-06-16 21:28:30 -04:00
# show_on_user_card :boolean default(FALSE), not null
# external_name :string
# external_type :string
#