mongoid-history icon indicating copy to clipboard operation
mongoid-history copied to clipboard

Multi-user non-linear history tracking, auditing, undo, redo for mongoid.

Results 48 mongoid-history issues
Sort by recently updated
recently updated
newest added

Is it possibile to grab request details from a request in Sinatra. The sweeper observer doesn't seem to work for sinatra. I have an api which receives an id of...

question

Hi, This update introduces the possibility to not save tracks when modifier of the model being changed is not set. This comes handy in case the models get updated in...

I am using mongoid-history(0.5.0) with an rails(5.0.0) and mongoid(github master branch). The changes are ``` ruby #app/models/history_tracker.rb class HistoryTracker include Mongoid::History::Trackable end #config/initializers/history_tracker.rb Mongoid::History.tracker_class_name = :history_tracker #app/models/user.rb class User include...

bug?

- [x] embeds_one with changes in Parent - [x] embeds_one with empty changes in Parent - [ ] embeds_many with empty changes on Parent

Is there a way to remove modifier_field or not create it? ` track_history on: [:fields], modifier_field: nil, track_create: true `

feature request

Hi, I successfully implemented this gem for document create, update and destroy. But I am doing a Bulk Write operation in my program and the history tracker is not able...

feature request

Is there a convenient way for retrieving (by reading the history ?), the value of a given field at time t ? I would like to be able to compute...

feature request

I would like to track the history of an object with some sensitive fields (like a password). The value of the change is irrelevant but who changed it and the...

feature request
question