feat: add remote follow / authorize interaction support

Add OStatus subscribe template to WebFinger responses so remote servers
(WordPress AP, Misskey, etc.) can discover and redirect users to complete
follow interactions. Unauthenticated users are sent to login first, then
redirected to the existing reader profile page with follow/unfollow UI.
This commit is contained in:
Ricardo
2026-02-24 15:00:40 +01:00
parent a62a0d8aac
commit 17b0f582d1
5 changed files with 73 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{% extends "document.njk" %}
{% from "prose/macro.njk" import prose with context %}
{% block content %}
{% if error %}
{{ prose({ text: error }) }}
{% endif %}
<p><a href="{{ mountPath }}/">Return to dashboard</a></p>
{% endblock %}