diff options
author | 2018-07-29 01:19:44 +0200 | |
---|---|---|
committer | 2018-07-29 01:19:44 +0200 | |
commit | d3e00734059fcc5b347fb5148f2ab28756b788ab (patch) | |
tree | 8964b635f12c8f56fa67e94d9370fd48dc121842 /pysite | |
parent | Merge branch 'master' into clean_command (diff) |
Support for embeds and attachments.
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/api/bot/clean.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pysite/views/api/bot/clean.py b/pysite/views/api/bot/clean.py index f914c03c..2ee3f62d 100644 --- a/pysite/views/api/bot/clean.py +++ b/pysite/views/api/bot/clean.py @@ -10,9 +10,12 @@ POST_SCHEMA = Schema({ 'log_data': [ { "author": str, + "user_id": str, "content": str, + "role": str, "timestamp": str, - "role": str + "embeds": object, + "attachments": [str], } ] }) |