From 89016de8cab9d364a76410f27c52397edbb7468b Mon Sep 17 00:00:00 2001 From: zevaryx Date: Wed, 10 May 2023 18:48:07 -0600 Subject: [PATCH] Add origin to VoteMod --- jarvis_core/db/models/votemod.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jarvis_core/db/models/votemod.py b/jarvis_core/db/models/votemod.py index df168b5..d63df9d 100644 --- a/jarvis_core/db/models/votemod.py +++ b/jarvis_core/db/models/votemod.py @@ -19,8 +19,9 @@ class Karma(Document): class VoteMod(Document): initiator: int target: int + origin: str message: int content: str attachments: list[str] score: int - votes: list[Vote] \ No newline at end of file + votes: list[Vote]