feat(aurora): add metadata to evidenceformat
This commit is contained in:
parent
bfb4d8768d
commit
5b64ee9578
1 changed files with 3 additions and 0 deletions
|
@ -289,6 +289,9 @@ async def evidenceformat_factory(moderation: Moderation) -> str:
|
|||
|
||||
content += f"\nReason: {moderation.reason}"
|
||||
|
||||
for key, value in moderation.metadata.items():
|
||||
content += f"\n{key.title()}: {value}"
|
||||
|
||||
return box(content, "prolog")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue