Sha256: 972b1195d8612ed5c002acb8dd6a94915feb398dbc47584d66d1cb65e04085c6
Contents?: true
Size: 764 Bytes
Versions: 1
Compression:
Stored size: 764 Bytes
Contents
# frozen_string_literal: true module Sail # Entry # # The Entry class holds the saved value # for settings for each profile. It is # a model for representing the N x N # relationship between profiles and settings class Entry < ApplicationRecord belongs_to :setting belongs_to :profile validates :value, :setting, :profile, presence: true scope :by_profile_name, ->(name) { joins(:profile).where(sail_profiles: { name: name }) } delegate :name, to: :setting # dirty? # # dirty? will return true if # the entry value is different # than the associated setting value. # This happens when a setting is changed # without saving the profile. def dirty? value != setting.value end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sail-3.6.0 | app/models/sail/entry.rb |