pull/8/head
db0 2023-06-23 16:35:32 +02:00
parent 929d59dde4
commit e985ceefdc
1 changed files with 11 additions and 1 deletions

View File

@ -52,3 +52,13 @@ def wellknown_redirect():
] ]
} }
return webfinger,200 return webfinger,200
@logger.catch(reraise=True)
@OVERSEER.route('/inbox', methods=['POST'])
def inbox():
query_string = request.query_string.decode()
print(query_string)
# Access the JSON payload
json_payload = request.get_json()
print(json_payload)
return 'ok', 200