2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-02 16:51:03 -05:00
|
|
|
class UserCallout < ActiveRecord::Base
|
2018-01-26 11:06:52 -05:00
|
|
|
belongs_to :user
|
2018-02-01 21:07:33 -05:00
|
|
|
|
2018-02-02 18:16:24 -05:00
|
|
|
enum feature_name: {
|
2018-05-07 14:06:02 -04:00
|
|
|
gke_cluster_integration: 1,
|
2018-09-06 00:13:44 -04:00
|
|
|
gcp_signup_offer: 2,
|
2018-10-12 05:45:50 -04:00
|
|
|
cluster_security_warning: 3
|
2018-02-02 18:16:24 -05:00
|
|
|
}
|
|
|
|
|
2018-02-01 21:07:33 -05:00
|
|
|
validates :user, presence: true
|
2018-02-02 18:16:24 -05:00
|
|
|
validates :feature_name,
|
|
|
|
presence: true,
|
|
|
|
uniqueness: { scope: :user_id },
|
|
|
|
inclusion: { in: UserCallout.feature_names.keys }
|
2018-01-26 11:06:52 -05:00
|
|
|
end
|