Log specific kind of events #50
cedricbonhomme
started this conversation in
Ideas
Replies: 2 comments
-
New modelevent.py class Event(db.Model):
id = db.Column(db.Integer, primary_key=True)
scope = db.Column(db.String(), nullable=False)
action = db.Column(db.String(), nullable=False)
subject = db.Column(db.String(), nullable=False)
initiator = db.Column(db.String())
date = db.Column(db.DateTime(), default=datetime.utcnow) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Properties of an eventScopeConcerns the subject. The type of object: SubjectIdentify the subject. Id of the object. ActionThe action initiated on the subject. For example:
InitiatorThe person or thing that initiates the action.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
New functionality to log specific kind of events. For example:
Updates to object are already logged since objects are versioned.
This will allow us to plot more stats.
Beta Was this translation helpful? Give feedback.
All reactions