scinote-web/app/models/custom_field.rb

25 lines
934 B
Ruby
Raw Normal View History

2017-06-23 21:19:08 +08:00
class CustomField < ApplicationRecord
auto_strip_attributes :name, nullify: false
2016-02-12 23:52:43 +08:00
validates :name,
presence: true,
length: { maximum: Constants::NAME_MAX_LENGTH },
2017-01-24 23:34:21 +08:00
uniqueness: { scope: :team, case_sensitive: true },
exclusion: { in: ['Assigned', 'Sample name', 'Sample type',
'Sample group', 'Added on', 'Added by'] }
2017-01-24 23:34:21 +08:00
validates :user, :team, presence: true
2016-02-12 23:52:43 +08:00
2017-06-28 21:21:32 +08:00
belongs_to :user, inverse_of: :custom_fields, optional: true
belongs_to :team, inverse_of: :custom_fields, optional: true
belongs_to :last_modified_by,
foreign_key: 'last_modified_by_id',
2017-06-28 21:21:32 +08:00
class_name: 'User',
optional: true
2016-12-09 18:58:10 +08:00
has_many :sample_custom_fields, inverse_of: :custom_field, dependent: :destroy
2016-12-08 00:43:00 +08:00
after_create :update_samples_table_state
def update_samples_table_state
SamplesTable.update_samples_table_state(self, nil)
end
2016-02-12 23:52:43 +08:00
end