django / django-contrib-comments

BSD 3-Clause "New" or "Revised" License
614 stars 196 forks source link

How to custom LogEntry? #184

Closed thosuperman closed 2 years ago

thosuperman commented 2 years ago

Original LogEntry action_flag has 3 options:

ADDITION = 1
CHANGE = 2
DELETION = 3

ACTION_FLAG_CHOICES = (
    (ADDITION, _('Addition')),
    (CHANGE, _('Change')),
    (DELETION, _('Deletion')),
)

How can I add more options to it? Example: DOWNLOAD = 4