Improve doc
This commit is contained in:
parent
b5625a4550
commit
4cad36572c
|
@ -1101,6 +1101,7 @@ docs:
|
||||||
no-params: "パラメータはありません"
|
no-params: "パラメータはありません"
|
||||||
res: "レスポンス"
|
res: "レスポンス"
|
||||||
require-credential: "このエンドポイントは認証情報が必須です。"
|
require-credential: "このエンドポイントは認証情報が必須です。"
|
||||||
|
limit: "レートリミットがあります。直近{duration}ミリ秒の間のこのエンドポイントへのリクエスト数の合計が{max}を超える場合はリクエストできません。"
|
||||||
props:
|
props:
|
||||||
name: "名前"
|
name: "名前"
|
||||||
type: "型"
|
type: "型"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -20,6 +20,9 @@ block main
|
||||||
if endpoint.requireCredential
|
if endpoint.requireCredential
|
||||||
div.ui.info: p= i18n('docs.api.endpoints.require-credential')
|
div.ui.info: p= i18n('docs.api.endpoints.require-credential')
|
||||||
|
|
||||||
|
if endpoint.limit
|
||||||
|
div.ui.warn: p!= i18n('docs.api.endpoints.limit').replace('{duration}', endpoint.limit.duration).replace('{max}', endpoint.limit.max)
|
||||||
|
|
||||||
if params && Object.keys(params).length > 0
|
if params && Object.keys(params).length > 0
|
||||||
section
|
section
|
||||||
h2= i18n('docs.api.endpoints.params')
|
h2= i18n('docs.api.endpoints.params')
|
||||||
|
|
Loading…
Reference in New Issue