Stub an ActivityPub inbox
Committed 7bfbef
--- a/webint_mentions/__init__.py
+++ b/webint_mentions/__init__.py
def get(self):
"""Details of the webmention, with status information in mf2."""
return app.view.sent.index()
+
+
+@app.control("inbox", prefixed=False)
+class ActivityPubInbox:
+ """Your mentions from the Fediverse."""
+
+ def post(self):
+ """ActivityPub Inbox."""
+ form = web.form()
+ from pprint import pprint
+
+ pprint(form)