From fa37e1a9ae3c2087e9ff3f15cbf0602854107198 Mon Sep 17 00:00:00 2001 From: Manish Devrani Date: Sat, 15 Jul 2023 16:41:30 +0530 Subject: [PATCH] added userStatusFlag feature flag --- app/controllers/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/index.js b/app/controllers/index.js index 7f7f5d1c..0cae6926 100644 --- a/app/controllers/index.js +++ b/app/controllers/index.js @@ -25,7 +25,7 @@ export default class IndexController extends Controller { this.toggleUserStateModal(); } try { - await fetch(`${BASE_URL}/users/status/self`, { + await fetch(`${BASE_URL}/users/status/self?userStatusFlag=true`, { method: 'PATCH', body: JSON.stringify(newStatus), headers: {