mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 11:32:57 +08:00
Merge pull request #13388 from dataease/pr@dev-v2@perf_embedded_secret_length
perf(X-Pack): 嵌入式应用指定密钥长度
This commit is contained in:
commit
42b2537a2e
@ -640,6 +640,7 @@ export default {
|
||||
edit_embedded_application: '编辑嵌入式应用',
|
||||
application_name: '应用名称',
|
||||
cross_domain_settings: '跨域设置',
|
||||
embedded_secret_len_change: '密钥长度变化,密钥即将重置,是否确认',
|
||||
embedded_management: '嵌入式管理',
|
||||
to_5_applications: '最多支持创建5个应用',
|
||||
update_app_secret: '确定更新APP Secret吗?',
|
||||
@ -692,7 +693,8 @@ export default {
|
||||
the_minimum_date: '请选择最小日期',
|
||||
the_maximum_date: '请选择最大日期',
|
||||
on_the_left_p: '请选择左侧变量',
|
||||
edit_variable_value: '编辑变量值'
|
||||
edit_variable_value: '编辑变量值',
|
||||
secret_length: '密钥长度'
|
||||
},
|
||||
components: {
|
||||
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;
|
||||
@Schema(description = "应用域名")
|
||||
private String domain;
|
||||
@Schema(description = "密钥长度")
|
||||
private Integer secretLength = 16;
|
||||
}
|
||||
|
@ -14,4 +14,6 @@ public class EmbeddedEditor implements Serializable {
|
||||
private String name;
|
||||
@Schema(description = "应用域名")
|
||||
private String domain;
|
||||
@Schema(description = "密钥长度")
|
||||
private Integer secretLength = 16;
|
||||
}
|
||||
|
@ -22,4 +22,6 @@ public class EmbeddedGridVO implements Serializable {
|
||||
private String appSecret;
|
||||
@Schema(description = "应用域名")
|
||||
private String domain;
|
||||
@Schema(description = "密钥长度")
|
||||
private Integer secretLength = 16;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user