mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-12 18:58:00 +00:00
Revert "Revert "expose the list of registered targets to default page""
This reverts commit 51d2ab4e36
.
This commit is contained in:
parent
5823d38ad8
commit
d74fc15198
|
@ -1,8 +1,10 @@
|
||||||
import aiohttp.web
|
import aiohttp.web
|
||||||
from . import app, CONFIG
|
from . import app, CONFIG
|
||||||
|
from .database import DATABASE
|
||||||
|
|
||||||
host = CONFIG['ap']['host']
|
host = CONFIG['ap']['host']
|
||||||
note = CONFIG['note']
|
note = CONFIG['note']
|
||||||
|
targets = '<br>'.join([target for target in DATABASE.get('relay-list', [])])
|
||||||
|
|
||||||
async def default(request):
|
async def default(request):
|
||||||
return aiohttp.web.Response(
|
return aiohttp.web.Response(
|
||||||
|
@ -23,8 +25,9 @@ async def default(request):
|
||||||
<p>For Mastodon instances, you may subscribe to this relay with the address: <a href="https://{host}/inbox">https://{host}/inbox</a></p>
|
<p>For Mastodon instances, you may subscribe to this relay with the address: <a href="https://{host}/inbox">https://{host}/inbox</a></p>
|
||||||
<p>For Pleroma and other instances, you may subscribe to this relay with the address: <a href="https://{host}/actor">https://{host}/actor</a></p>
|
<p>For Pleroma and other instances, you may subscribe to this relay with the address: <a href="https://{host}/actor">https://{host}/actor</a></p>
|
||||||
<p>To host your own relay, you may download the code at this address: <a href="https://git.pleroma.social/pleroma/relay">https://git.pleroma.social/pleroma/relay</a></p>
|
<p>To host your own relay, you may download the code at this address: <a href="https://git.pleroma.social/pleroma/relay">https://git.pleroma.social/pleroma/relay</a></p>
|
||||||
|
<br><p>List of registered instances:<br>{targets}</p>
|
||||||
</body></html>
|
</body></html>
|
||||||
|
|
||||||
""".format(host=host, note=note))
|
""".format(host=host, note=note,targets=targets))
|
||||||
|
|
||||||
app.router.add_get('/', default)
|
app.router.add_get('/', default)
|
||||||
|
|
Loading…
Reference in a new issue