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

18 lines
383 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-02 21:51:03 +00:00
class UserCallout < ActiveRecord::Base
2018-01-26 16:06:52 +00:00
belongs_to :user
enum feature_name: {
gke_cluster_integration: 1,
2018-09-06 04:13:44 +00:00
gcp_signup_offer: 2,
cluster_security_warning: 3
}
validates :user, presence: true
validates :feature_name,
presence: true,
uniqueness: { scope: :user_id },
inclusion: { in: UserCallout.feature_names.keys }
2018-01-26 16:06:52 +00:00
end