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
2021-04-16 16:03:10 +02:00

18 lines
291 B
Ruby

# frozen_string_literal: true
# Setting values, kept history of modifications
class HistoryValue < Footprintable
belongs_to :setting
belongs_to :invoicing_profile
after_create :chain_record
def sort_on_field
'created_at'
end
def user
invoicing_profile.user
end
end