summaryrefslogtreecommitdiff
path: root/src/server/api
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-03-24 12:23:05 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-03-24 12:23:05 +0900
commitbb6cd258f3b811cd10bdd2618af7e24c65d2549b (patch)
tree0df3977ed3570423ceefb7250c5562c6fa7f87bf /src/server/api
parentUpdate 01_bug-report.md (diff)
downloadsharkey-bb6cd258f3b811cd10bdd2618af7e24c65d2549b.tar.gz
sharkey-bb6cd258f3b811cd10bdd2618af7e24c65d2549b.tar.bz2
sharkey-bb6cd258f3b811cd10bdd2618af7e24c65d2549b.zip
syuilo/misskey --> misskey-dev/misskey
Diffstat (limited to 'src/server/api')
-rw-r--r--src/server/api/endpoints/meta.ts4
-rw-r--r--src/server/api/openapi/gen-spec.ts4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/server/api/endpoints/meta.ts b/src/server/api/endpoints/meta.ts
index 2a94ae35f6..3760c8b37b 100644
--- a/src/server/api/endpoints/meta.ts
+++ b/src/server/api/endpoints/meta.ts
@@ -71,12 +71,12 @@ export const meta = {
repositoryUrl: {
type: 'string' as const,
optional: false as const, nullable: false as const,
- default: 'https://github.com/syuilo/misskey'
+ default: 'https://github.com/misskey-dev/misskey'
},
feedbackUrl: {
type: 'string' as const,
optional: false as const, nullable: false as const,
- default: 'https://github.com/syuilo/misskey/issues/new'
+ default: 'https://github.com/misskey-dev/misskey/issues/new'
},
secure: {
type: 'boolean' as const,
diff --git a/src/server/api/openapi/gen-spec.ts b/src/server/api/openapi/gen-spec.ts
index 221e0a32df..adac3bda2c 100644
--- a/src/server/api/openapi/gen-spec.ts
+++ b/src/server/api/openapi/gen-spec.ts
@@ -18,7 +18,7 @@ export function genOpenapiSpec(lang = 'ja-JP') {
externalDocs: {
description: 'Repository',
- url: 'https://github.com/syuilo/misskey'
+ url: 'https://github.com/misskey-dev/misskey'
},
servers: [{
@@ -120,7 +120,7 @@ export function genOpenapiSpec(lang = 'ja-JP') {
description: desc,
externalDocs: {
description: 'Source code',
- url: `https://github.com/syuilo/misskey/blob/develop/src/server/api/endpoints/${endpoint.name}.ts`
+ url: `https://github.com/misskey-dev/misskey/blob/develop/src/server/api/endpoints/${endpoint.name}.ts`
},
...(endpoint.meta.tags ? {
tags: [endpoint.meta.tags[0]]