gitlab-org--gitlab-foss/app/models/user_custom_attribute.rb

19 lines
524 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UserCustomAttribute < ApplicationRecord
2017-09-28 12:49:42 -04:00
belongs_to :user
validates :user_id, :key, :value, presence: true
validates :key, uniqueness: { scope: [:user_id] }
def self.upsert_custom_attributes(custom_attributes)
created_at = Date.today
updated_at = Date.today
custom_attributes.map! do |custom_attribute|
custom_attribute.merge({ created_at: created_at, updated_at: updated_at })
end
upsert_all(custom_attributes, unique_by: [:user_id, :key])
end
2017-09-28 12:49:42 -04:00
end