From bc628c38809adda6df48fdeb99ca77c855989a86 Mon Sep 17 00:00:00 2001 From: Wesley Finck Date: Thu, 12 Feb 2026 19:33:58 -0800 Subject: [PATCH] return success status in unfollow controller --- .../infrastructure/http/controllers/UnfollowTargetController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts b/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts index cef68e1d..f056be91 100644 --- a/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts +++ b/src/modules/user/infrastructure/http/controllers/UnfollowTargetController.ts @@ -35,7 +35,7 @@ export class UnfollowTargetController extends Controller { return this.fail(res, result.error); } - return this.ok(res); + return this.ok(res, { success: true }); } catch (error: any) { return this.handleError(res, error); } -- 2.51.2