Implement replying to event in backend

This commit is contained in:
miruka
2020-05-20 06:17:14 -04:00
parent aa8d3cf8d3
commit fb35a6ec14
7 changed files with 68 additions and 13 deletions

View File

@@ -219,11 +219,13 @@ class Event(ModelItem):
sender_avatar: str = field()
fetch_profile: bool = False
content: str = ""
inline_content: str = ""
reason: str = ""
links: List[str] = field(default_factory=list)
mentions: List[Tuple[str, str]] = field(default_factory=list)
origin_body: str = ""
origin_formatted_body: str = ""
content: str = ""
inline_content: str = ""
reason: str = ""
links: List[str] = field(default_factory=list)
mentions: List[Tuple[str, str]] = field(default_factory=list)
type_specifier: TypeSpecifier = TypeSpecifier.Unset