Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpgaspar/fab_addon_audit
AddOn for Flask-AppBuilder. Will add audit to your ModelView's
https://github.com/dpgaspar/fab_addon_audit
Last synced: about 1 month ago
JSON representation
AddOn for Flask-AppBuilder. Will add audit to your ModelView's
- Host: GitHub
- URL: https://github.com/dpgaspar/fab_addon_audit
- Owner: dpgaspar
- License: bsd-3-clause
- Created: 2015-11-12T13:36:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-26T19:38:06.000Z (8 months ago)
- Last Synced: 2024-10-02T09:19:26.380Z (about 1 month ago)
- Language: Python
- Size: 6.84 KB
- Stars: 10
- Watchers: 5
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - dpgaspar/fab_addon_audit - AddOn for Flask-AppBuilder. Will add audit to your ModelView's (Python)
README
F.A.B. AddOn for Auditing
-------------------------Will add audit views to F.A.B's security menu. Enables audit for insert, update and delete operations
on any ModelView you choose.- Install it::
pip install fab-addon-audit
- Use it:
On you application add the following key to **config.py**
ADDON_MANAGERS = ['fab_addon_audit.manager.AuditAddOnManager']
On your application change your views.py file to import::
from fab_addon_audit.views import AuditedModelView
Then subclass the ModelView's you want to audit from AuditedModelView::
class ContactModelView(AuditedModelView):
datamodel = SQLAInterface(Contact)