Rejigger the Mod/Report state system.
This commit is contained in:
parent
31ebdd0213
commit
ccf809406e
36 changed files with 492 additions and 226 deletions
13
files/classes/visstate.py
Normal file
13
files/classes/visstate.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue