Skip to content
Snippets Groups Projects
Unverified Commit cf7c6558 authored by 6543's avatar 6543 Committed by GitHub
Browse files

enhance nodeinfo by prpoagate the standart keys for homepage and repository (#11830)

parent efa66ae8
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ import type { FastifyInstance, FastifyPluginOptions } from 'fastify';
const nodeinfo2_1path = '/nodeinfo/2.1';
const nodeinfo2_0path = '/nodeinfo/2.0';
const nodeinfo_homepage = 'https://misskey-hub.net';
@Injectable()
export class NodeinfoServerService {
......@@ -78,6 +79,8 @@ export class NodeinfoServerService {
software: {
name: 'misskey',
version: this.config.version,
homepage: nodeinfo_homepage,
repository: meta.repositoryUrl,
},
protocols: ['activitypub'],
services: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment