mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-04 20:05:16 +02:00
feat(file-storage): add document_files model and enum
This commit is contained in:
parent
1bb1022d35
commit
72174c780a
3 changed files with 88 additions and 0 deletions
11
surfsense_backend/app/file_storage/persistence/enums.py
Normal file
11
surfsense_backend/app/file_storage/persistence/enums.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""DocumentFile kinds: the original upload plus future derived artifacts."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from enum import StrEnum
|
||||
|
||||
|
||||
class DocumentFileKind(StrEnum):
|
||||
ORIGINAL = "ORIGINAL"
|
||||
REDACTED = "REDACTED"
|
||||
FILLED_FORM = "FILLED_FORM"
|
||||
Loading…
Add table
Add a link
Reference in a new issue