From 7c4592e7285babb597d144715cc8f3fb2c683db0 Mon Sep 17 00:00:00 2001 From: Shristi Sinha Date: Tue, 21 May 2024 14:15:43 +0530 Subject: [PATCH] add created in get stack api --- api/src/services/org.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/src/services/org.service.ts b/api/src/services/org.service.ts index e71dbfc5..ccff6804 100644 --- a/api/src/services/org.service.ts +++ b/api/src/services/org.service.ts @@ -292,7 +292,7 @@ const getStackLocal = async (token_payload: any, data: any) => { token_payload?.region as keyof typeof config.CS_API ]!}/locales`, headers: { - api_key: stack.api_key, + api_key: stack.api_key, authtoken, }, }) @@ -324,6 +324,7 @@ const getStackLocal = async (token_payload: any, data: any) => { name: stack.name, api_key: stack.api_key, master_locale: stack.master_locale, + created_at: stack.created_at, locales: localesArr, }; stacks.push(obj);