1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/history_value.rb
2020-03-25 12:35:09 +01:00

31 lines
525 B
Ruby

# frozen_string_literal: true
require 'checksum'
# Setting values, kept history of modifications
class HistoryValue < ApplicationRecord
belongs_to :setting
belongs_to :invoicing_profile
after_create :chain_record
def chain_record
self.footprint = compute_footprint
save!
end
def check_footprint
footprint == compute_footprint
end
def user
invoicing_profile.user
end
private
def compute_footprint
FootprintService.compute_footprint(HistoryValue, self, 'created_at')
end
end