feat:去除获取资源信息需要cookie的限制

This commit is contained in:
jiangrui
2025-03-12 15:22:30 +08:00
parent f32b6cd5d0
commit bc38acded3

View File

@@ -10,7 +10,7 @@ export abstract class BaseCloudController extends BaseController {
async getShareInfo(req: Request, res: Response): Promise<void> {
await this.handleRequest(req, res, async () => {
const { shareCode, receiveCode } = req.query;
await this.cloudService.setCookie(req);
// await this.cloudService.setCookie(req);
return await this.cloudService.getShareInfo(shareCode as string, receiveCode as string);
});
}