fix:库文件增添取消收藏接口
This commit is contained in:
parent
821f4adfc1
commit
a22b20aab7
|
|
@ -176,4 +176,17 @@ public class RepoEdFileInfoController {
|
||||||
String userId = UserThreadLocal.getUserId();
|
String userId = UserThreadLocal.getUserId();
|
||||||
return ElectromagneticResultUtil.success(edFileInfoService.addFavorite(userId, id));
|
return ElectromagneticResultUtil.success(edFileInfoService.addFavorite(userId, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 从收藏夹移除
|
||||||
|
*
|
||||||
|
* @param id 文件id
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@GetMapping("/removeCollection")
|
||||||
|
@UserOperation(value = "从收藏夹移除文件", modelName = UserOperationModuleEnum.USER_PRJ)
|
||||||
|
public ElectromagneticResult<?> removeFavorite(@RequestParam String id) {
|
||||||
|
String userId = UserThreadLocal.getUserId();
|
||||||
|
return ElectromagneticResultUtil.success(edFileInfoService.removeFavorite(userId, id));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue