|
|
@@ -60,7 +60,9 @@ public class MetaController {
|
|
|
String json = meta.getValue() instanceof String
|
|
|
? (String) meta.getValue()
|
|
|
: objectMapper.writeValueAsString(meta.getValue());
|
|
|
- return Response.ok(objectMapper.readValue(json, OssConfigMeta.class));
|
|
|
+ OssConfigMeta ossConfigMeta = objectMapper.readValue(json, OssConfigMeta.class);
|
|
|
+ ossConfigMeta.setSecretKey("aaaa");
|
|
|
+ return Response.ok(ossConfigMeta);
|
|
|
}
|
|
|
|
|
|
@PreAuthorize("hasAnyRole('ROLE_admin')")
|