perf(X-Pack): 嵌入式应用指定密钥长度

This commit is contained in:
fit2cloud-chenyw 2024-11-18 16:18:41 +08:00
parent facf7a1477
commit 0ab3e6f510
5 changed files with 10 additions and 2 deletions

View File

@ -639,6 +639,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吗',
@ -691,7 +692,8 @@ export default {
the_minimum_date: '请选择最小日期',
the_maximum_date: '请选择最大日期',
on_the_left_p: '请选择左侧变量',
edit_variable_value: '编辑变量值'
edit_variable_value: '编辑变量值',
secret_length: '密钥长度'
},
components: {
dashboard_style: '仪表板风格',

@ -1 +1 @@
Subproject commit 1e82eb625b4479fc5659951356f4f23de7f077c4
Subproject commit 9d120aec82118de0493e3c22dc2acc200f74f05a

View File

@ -12,4 +12,6 @@ public class EmbeddedCreator implements Serializable {
private String name;
@Schema(description = "应用域名")
private String domain;
@Schema(description = "密钥长度")
private Integer secretLength = 16;
}

View File

@ -14,4 +14,6 @@ public class EmbeddedEditor implements Serializable {
private String name;
@Schema(description = "应用域名")
private String domain;
@Schema(description = "密钥长度")
private Integer secretLength = 16;
}

View File

@ -22,4 +22,6 @@ public class EmbeddedGridVO implements Serializable {
private String appSecret;
@Schema(description = "应用域名")
private String domain;
@Schema(description = "密钥长度")
private Integer secretLength = 16;
}