Delete activitypub-servers.php

This commit is contained in:
Namhyeon Go 2022-07-03 23:53:15 +09:00 committed by GitHub
parent 9fd591e015
commit 4217f6349f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,37 +0,0 @@
<?php
if (!defined('_GNUBOARD_')) exit;
return <<<EOF
{
"self": {
"enabled: true,
"platform": "gnuboard5",
"user": "/?route=activitypub.user&mb_id=:username",
"inbox": "/?route=activitypub.inbox",
"accesstoken": "YOUR ACCESSTOKEN HERE",
"docs": [
"https://github.com/gnh1201/gnuboard5-activitypub"
]
},
"https://mastodon.social": {
"enabled": false,
"platform": "mastodon",
"user": "/users/:username",
"inbox": "/inbox",
"accesstoken": "YOUR ACCESSTOKEN HERE",
"docs": [
"https://docs.joinmastodon.org/spec/activitypub/"
]
},
"https://peertube.local": {
"enabled": false,
"platform": "peertube",
"user": "/accounts/:username",
"inbox": "/inbox",
"accesstoken": "YOUR ACCESSTOKEN HERE",
"docs": [
"https://docs.joinpeertube.org/api-rest-reference.html"
]
}
}
EOF;