perf(X-Pack): 嵌入式应用指定密钥长度
This commit is contained in:
parent
facf7a1477
commit
0ab3e6f510
@ -639,6 +639,7 @@ export default {
|
|||||||
edit_embedded_application: '编辑嵌入式应用',
|
edit_embedded_application: '编辑嵌入式应用',
|
||||||
application_name: '应用名称',
|
application_name: '应用名称',
|
||||||
cross_domain_settings: '跨域设置',
|
cross_domain_settings: '跨域设置',
|
||||||
|
embedded_secret_len_change: '密钥长度变化,密钥即将重置,是否确认',
|
||||||
embedded_management: '嵌入式管理',
|
embedded_management: '嵌入式管理',
|
||||||
to_5_applications: '最多支持创建5个应用',
|
to_5_applications: '最多支持创建5个应用',
|
||||||
update_app_secret: '确定更新APP Secret吗?',
|
update_app_secret: '确定更新APP Secret吗?',
|
||||||
@ -691,7 +692,8 @@ export default {
|
|||||||
the_minimum_date: '请选择最小日期',
|
the_minimum_date: '请选择最小日期',
|
||||||
the_maximum_date: '请选择最大日期',
|
the_maximum_date: '请选择最大日期',
|
||||||
on_the_left_p: '请选择左侧变量',
|
on_the_left_p: '请选择左侧变量',
|
||||||
edit_variable_value: '编辑变量值'
|
edit_variable_value: '编辑变量值',
|
||||||
|
secret_length: '密钥长度'
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
dashboard_style: '仪表板风格',
|
dashboard_style: '仪表板风格',
|
||||||
|
|||||||
2
de-xpack
2
de-xpack
@ -1 +1 @@
|
|||||||
Subproject commit 1e82eb625b4479fc5659951356f4f23de7f077c4
|
Subproject commit 9d120aec82118de0493e3c22dc2acc200f74f05a
|
||||||
@ -12,4 +12,6 @@ public class EmbeddedCreator implements Serializable {
|
|||||||
private String name;
|
private String name;
|
||||||
@Schema(description = "应用域名")
|
@Schema(description = "应用域名")
|
||||||
private String domain;
|
private String domain;
|
||||||
|
@Schema(description = "密钥长度")
|
||||||
|
private Integer secretLength = 16;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -14,4 +14,6 @@ public class EmbeddedEditor implements Serializable {
|
|||||||
private String name;
|
private String name;
|
||||||
@Schema(description = "应用域名")
|
@Schema(description = "应用域名")
|
||||||
private String domain;
|
private String domain;
|
||||||
|
@Schema(description = "密钥长度")
|
||||||
|
private Integer secretLength = 16;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,4 +22,6 @@ public class EmbeddedGridVO implements Serializable {
|
|||||||
private String appSecret;
|
private String appSecret;
|
||||||
@Schema(description = "应用域名")
|
@Schema(description = "应用域名")
|
||||||
private String domain;
|
private String domain;
|
||||||
|
@Schema(description = "密钥长度")
|
||||||
|
private Integer secretLength = 16;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user