diff --git a/relay/default.py b/relay/default.py index cc08e06..de2dc1e 100644 --- a/relay/default.py +++ b/relay/default.py @@ -1,8 +1,10 @@ import aiohttp.web from . import app, CONFIG +from .database import DATABASE host = CONFIG['ap']['host'] note = CONFIG['note'] +targets = '
'.join([target for target in DATABASE.get('relay-list', [])]) async def default(request): return aiohttp.web.Response( @@ -23,8 +25,9 @@ async def default(request):

For Mastodon instances, you may subscribe to this relay with the address: https://{host}/inbox

For Pleroma and other instances, you may subscribe to this relay with the address: https://{host}/actor

To host your own relay, you may download the code at this address: https://git.pleroma.social/pleroma/relay

+

List of registered instances:
{targets}

-""".format(host=host, note=note)) +""".format(host=host, note=note,targets=targets)) app.router.add_get('/', default)