|
@@ -22,8 +22,8 @@ public class VppKeyFileController {
|
|
|
private final VppKeyFileService vppKeyFileService;
|
|
|
|
|
|
@PostMapping("/parseKeyFile")
|
|
|
- public ResultMap<Void> parseKeyFile(MultipartFile keyFile, boolean updateOrInit) {
|
|
|
- vppKeyFileService.parseKeyFile(keyFile, updateOrInit);
|
|
|
+ public ResultMap<Void> parseKeyFile(MultipartFile keyFile) {
|
|
|
+ vppKeyFileService.parseKeyFile(keyFile);
|
|
|
return new ResultMap<>(CommonConstant.SUCCESS, CommonConstant.RESULT_SUCCESS);
|
|
|
}
|
|
|
|