use of com.orion.ops.consts.system.SystemCleanType in project orion-ops by lijiahangmax.
the class SystemController method cleanSystemFile.
/**
* 清理系统文件
*/
@RequestMapping("/clean-system-file")
@EventLog(EventType.CLEAN_SYSTEM_FILE)
@RequireRole(RoleType.ADMINISTRATOR)
public HttpWrapper<?> cleanSystemFile(@RequestBody SystemFileCleanRequest request) {
SystemCleanType cleanType = Valid.notNull(SystemCleanType.of(request.getCleanType()));
systemService.cleanSystemFile(cleanType);
return HttpWrapper.ok();
}
Aggregations