2020-05-10 17:10:36 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: installation_configs
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
2021-01-15 07:51:53 +00:00
|
|
|
# locked :boolean default(TRUE), not null
|
2020-05-10 17:10:36 +00:00
|
|
|
# name :string not null
|
|
|
|
# serialized_value :jsonb not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2021-01-15 07:51:53 +00:00
|
|
|
# index_installation_configs_on_name (name) UNIQUE
|
2020-05-10 17:10:36 +00:00
|
|
|
# index_installation_configs_on_name_and_created_at (name,created_at) UNIQUE
|
|
|
|
#
|
|
|
|
class InstallationConfig < ApplicationRecord
|
|
|
|
serialize :serialized_value, HashWithIndifferentAccess
|
|
|
|
|
2021-01-15 07:51:53 +00:00
|
|
|
before_validation :set_lock
|
2020-05-10 17:10:36 +00:00
|
|
|
validates :name, presence: true
|
|
|
|
|
|
|
|
default_scope { order(created_at: :desc) }
|
2021-01-15 07:51:53 +00:00
|
|
|
scope :editable, -> { where(locked: false) }
|
2020-05-10 17:10:36 +00:00
|
|
|
|
|
|
|
def value
|
|
|
|
serialized_value[:value]
|
|
|
|
end
|
|
|
|
|
|
|
|
def value=(value_to_assigned)
|
|
|
|
self.serialized_value = {
|
|
|
|
value: value_to_assigned
|
|
|
|
}.with_indifferent_access
|
|
|
|
end
|
2021-01-15 07:51:53 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_lock
|
|
|
|
self.locked = true if locked.nil?
|
|
|
|
end
|
2020-05-10 17:10:36 +00:00
|
|
|
end
|