Migrate cafy to 14.0 (#4240)
This commit is contained in:
parent
b083430011
commit
5aa58da918
77 changed files with 334 additions and 345 deletions
|
|
@ -19,7 +19,7 @@ export const meta = {
|
|||
},
|
||||
|
||||
offset: {
|
||||
validator: $.num.optional.min(0),
|
||||
validator: $.optional.num.min(0),
|
||||
default: 0,
|
||||
desc: {
|
||||
'ja-JP': 'オフセット'
|
||||
|
|
@ -27,7 +27,7 @@ export const meta = {
|
|||
},
|
||||
|
||||
limit: {
|
||||
validator: $.num.optional.range(1, 100),
|
||||
validator: $.optional.num.range(1, 100),
|
||||
default: 10,
|
||||
desc: {
|
||||
'ja-JP': '取得する数'
|
||||
|
|
@ -35,7 +35,7 @@ export const meta = {
|
|||
},
|
||||
|
||||
localOnly: {
|
||||
validator: $.bool.optional,
|
||||
validator: $.optional.bool,
|
||||
default: false,
|
||||
desc: {
|
||||
'ja-JP': 'ローカルユーザーのみ検索対象にするか否か'
|
||||
|
|
@ -43,7 +43,7 @@ export const meta = {
|
|||
},
|
||||
|
||||
detail: {
|
||||
validator: $.bool.optional,
|
||||
validator: $.optional.bool,
|
||||
default: true,
|
||||
desc: {
|
||||
'ja-JP': '詳細なユーザー情報を含めるか否か'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue