diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:09:32 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-06-08 14:09:32 +0900 |
| commit | 6b312f755eb171df0afd95a2d4e51cfd7300fa16 (patch) | |
| tree | 261024105325dd0ca8ad36d1315cc705a5ae25ef /src/server/api/endpoints/auth/session | |
| parent | 外部リンクアイコンが表示されない問題を修正 (diff) | |
| download | sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.gz sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.tar.bz2 sharkey-6b312f755eb171df0afd95a2d4e51cfd7300fa16.zip | |
Remove endpoint descriptions
#6627
Diffstat (limited to 'src/server/api/endpoints/auth/session')
| -rw-r--r-- | src/server/api/endpoints/auth/session/generate.ts | 9 | ||||
| -rw-r--r-- | src/server/api/endpoints/auth/session/show.ts | 4 | ||||
| -rw-r--r-- | src/server/api/endpoints/auth/session/userkey.ts | 8 |
3 files changed, 0 insertions, 21 deletions
diff --git a/src/server/api/endpoints/auth/session/generate.ts b/src/server/api/endpoints/auth/session/generate.ts index e0d003c499..ca004e9b19 100644 --- a/src/server/api/endpoints/auth/session/generate.ts +++ b/src/server/api/endpoints/auth/session/generate.ts @@ -11,18 +11,9 @@ export const meta = { requireCredential: false as const, - desc: { - 'ja-JP': 'アプリを認証するためのトークンを作成します。', - 'en-US': 'Generate a token for authorize application.' - }, - params: { appSecret: { validator: $.str, - desc: { - 'ja-JP': 'アプリケーションのシークレットキー', - 'en-US': 'The secret key of your application.' - } } }, diff --git a/src/server/api/endpoints/auth/session/show.ts b/src/server/api/endpoints/auth/session/show.ts index 9e0d6d90a4..fd20884c02 100644 --- a/src/server/api/endpoints/auth/session/show.ts +++ b/src/server/api/endpoints/auth/session/show.ts @@ -11,10 +11,6 @@ export const meta = { params: { token: { validator: $.str, - desc: { - 'ja-JP': 'セッションのトークン', - 'en-US': 'The token of a session.' - } } }, diff --git a/src/server/api/endpoints/auth/session/userkey.ts b/src/server/api/endpoints/auth/session/userkey.ts index 68d0c7bdf1..e015be20eb 100644 --- a/src/server/api/endpoints/auth/session/userkey.ts +++ b/src/server/api/endpoints/auth/session/userkey.ts @@ -11,18 +11,10 @@ export const meta = { params: { appSecret: { validator: $.str, - desc: { - 'ja-JP': 'アプリケーションのシークレットキー', - 'en-US': 'The secret key of your application.' - } }, token: { validator: $.str, - desc: { - 'ja-JP': 'セッションのトークン', - 'en-US': 'The token of a session.' - } } }, |