volontariat/voluntary

View on GitHub
lib/model/mongo_db/state_version_attributes.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Model
  module MongoDb
    module StateVersionAttributes
      extend ActiveSupport::Concern 
      
      included do
        field :state_before, type: String
        field :event, type: String
        field :trigger, type: String
        field :trigger_object_type, type: String
        field :trigger_object_id, type: Integer
      end
    end
  end
end