2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-25 11:32:08 -04:00
|
|
|
class UserField < ActiveRecord::Base
|
2016-12-22 16:46:22 +11:00
|
|
|
|
|
|
|
include AnonCacheInvalidator
|
|
|
|
|
2019-03-13 18:40:43 +01:00
|
|
|
validates_presence_of :description, :field_type
|
|
|
|
validates_presence_of :name, unless: -> { field_type == "confirm" }
|
2015-07-28 12:29:40 -04:00
|
|
|
has_many :user_field_options, dependent: :destroy
|
|
|
|
accepts_nested_attributes_for :user_field_options
|
2015-02-23 13:02:30 -05:00
|
|
|
|
|
|
|
def self.max_length
|
|
|
|
2048
|
|
|
|
end
|
2014-09-25 11:32:08 -04:00
|
|
|
end
|
2014-11-20 14:53:15 +11:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_fields
|
|
|
|
#
|
2016-04-08 14:35:41 +02:00
|
|
|
# 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
|
2016-04-08 14:35:41 +02:00
|
|
|
# editable :boolean default(FALSE), not null
|
2019-01-11 14:29:56 -05:00
|
|
|
# description :string not null
|
2016-04-08 14:35:41 +02:00
|
|
|
# required :boolean default(TRUE), not null
|
|
|
|
# show_on_profile :boolean default(FALSE), not null
|
|
|
|
# position :integer default(0)
|
2016-06-17 11:28:30 +10:00
|
|
|
# show_on_user_card :boolean default(FALSE), not null
|
2018-09-20 08:10:51 +05:30
|
|
|
# external_name :string
|
|
|
|
# external_type :string
|
2014-11-20 14:53:15 +11:00
|
|
|
#
|