Rejigger the Mod/Report state system.

This commit is contained in:
Ben Rog-Wilhelm 2023-06-25 20:46:24 -05:00
parent 31ebdd0213
commit ccf809406e
36 changed files with 492 additions and 226 deletions

13
files/classes/visstate.py Normal file
View file

@ -0,0 +1,13 @@
import enum
class StateMod(enum.Enum):
VISIBLE = 0
FILTERED = 1
REMOVED = 2
class StateReport(enum.Enum):
UNREPORTED = 0
RESOLVED = 1
REPORTED = 2
IGNORED = 3