Module: Decidim::Traceable
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/decidim/traceable.rb
Overview
A concern that adds traceabilty capability to the given model. Including this allows you the keep track of changes in the model attributes and changes authorship.
Example:
class MyModel < ApplicationRecord
include Decidim::Traceable
end