diff --git a/src/client/components/feed/FeedIntegration.tsx b/src/client/components/feed/FeedIntegration.tsx index 7bdd42d..6d474da 100644 --- a/src/client/components/feed/FeedIntegration.tsx +++ b/src/client/components/feed/FeedIntegration.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { LuGithub } from 'react-icons/lu'; +import { LuGithub, LuPlug } from 'react-icons/lu'; import { Popover, PopoverContent, PopoverTrigger } from '../ui/popover'; import { CodeBlock } from '../CodeBlock'; import { useTranslation } from '@i18next-toolkit/react'; @@ -10,7 +10,7 @@ export const FeedIntegration: React.FC<{ const { t } = useTranslation(); return ( -
+
} label="Github" @@ -28,6 +28,33 @@ export const FeedIntegration: React.FC<{
} /> + + } + label="Custom" + content={ +
+
{t('Custom Request')}
+ +
{t('Send POST request to')}:
+ + +
+ } + />
); });