From 912895b6c7a9f9756aed441df73fe9cd8731c7cf Mon Sep 17 00:00:00 2001 From: Keiwan Mosaddegh Date: Thu, 23 Jan 2025 09:52:12 +0100 Subject: [PATCH] feat(tiktok): add content posting method alternative to settings --- .../providers/tiktok/tiktok.provider.tsx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx b/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx index 6f2ca47c..6b704027 100644 --- a/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx +++ b/apps/frontend/src/components/launches/providers/tiktok/tiktok.provider.tsx @@ -33,6 +33,17 @@ const privacyLevel = [ }, ]; +const contentPostingMethod = [ + { + value: 'DIRECT_POST', + label: 'Post content directly to TikTok', + }, + { + value: 'UPLOAD', + label: 'Upload content to TikTok without posting it', + }, +]; + const yesNo = [ { value: 'true', @@ -126,6 +137,19 @@ const TikTokSettings: FC<{ values?: any }> = (props) => { ))} +
Allow User To: