9 lines
124 B
Ruby
9 lines
124 B
Ruby
# frozen_string_literal: true
|
|
module Trackable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
has_paper_trail
|
|
end
|
|
end
|