mirror of
https://github.com/paper-trail-gem/paper_trail.git
synced 2022-11-09 11:33:19 -05:00
Docs: Add ToC to readme
[ci skip]
This commit is contained in:
parent
fc9244dea2
commit
e19c4b798b
1 changed files with 22 additions and 0 deletions
22
README.md
22
README.md
|
@ -4,6 +4,28 @@ PaperTrail lets you track changes to your models' data. It's good for auditing
|
||||||
|
|
||||||
There's an excellent [RailsCast on implementing Undo with Paper Trail](http://railscasts.com/episodes/255-undo-with-paper-trail).
|
There's an excellent [RailsCast on implementing Undo with Paper Trail](http://railscasts.com/episodes/255-undo-with-paper-trail).
|
||||||
|
|
||||||
|
- [Features](#features)
|
||||||
|
- [Compatibility](#compatibility)
|
||||||
|
- [Installation](#installation)
|
||||||
|
- [API Summary](#api-summary)
|
||||||
|
- [Basic Usage](#basic-usage)
|
||||||
|
- [Choosing Lifecycle Events To Monitor](#choosing-lifecycle-events-to-monitor)
|
||||||
|
- [Choosing When To Save New Versions](#choosing-when-to-save-new-versions)
|
||||||
|
- [Choosing Attributes To Monitor](#choosing-attributes-to-monitor)
|
||||||
|
- [Reverting And Undeleting A Model](#reverting-and-undeleting-a-model)
|
||||||
|
- [Navigating Versions](#navigating-versions)
|
||||||
|
- [Finding Out Who Was Responsible For A Change](#finding-out-who-was-responsible-for-a-change)
|
||||||
|
- [Custom Version Classes](#custom-version-classes)
|
||||||
|
- [Associations](#associations)
|
||||||
|
- [Storing metadata](#storing-metadata)
|
||||||
|
- [Diffing Versions](#diffing-versions)
|
||||||
|
- [Turning PaperTrail Off/On](#turning-papertrail-offon)
|
||||||
|
- [Using a custom serializer](#using-a-custom-serializer)
|
||||||
|
- [SerializedAttributes support](#serializedattributes-support)
|
||||||
|
- [Limiting the number of versions created per object instance](#limiting-the-number-of-versions-created-per-object-instance)
|
||||||
|
- [Deleting Old Versions](#deleting-old-versions)
|
||||||
|
- [Testing](#testing)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Stores every create, update and destroy (or only the lifecycle events you specify).
|
* Stores every create, update and destroy (or only the lifecycle events you specify).
|
||||||
|
|
Loading…
Reference in a new issue