feat: add custom credential service (#4129)

Co-authored-by: Stanislav Novosad <stas@skyvern.com>
This commit is contained in:
Vikas
2025-12-03 06:55:04 +05:30
committed by GitHub
parent d310c5e39c
commit 6dad49eb08
17 changed files with 1248 additions and 2 deletions

View File

@@ -18,6 +18,7 @@ import { getRuntimeApiKey } from "@/util/env";
import { HiddenCopyableInput } from "@/components/ui/hidden-copyable-input";
import { OnePasswordTokenForm } from "@/components/OnePasswordTokenForm";
import { AzureClientSecretCredentialTokenForm } from "@/components/AzureClientSecretCredentialTokenForm";
import { CustomCredentialServiceConfigForm } from "@/components/CustomCredentialServiceConfigForm";
function Settings() {
const { environment, organization, setEnvironment, setOrganization } =
@@ -97,6 +98,17 @@ function Settings() {
<AzureClientSecretCredentialTokenForm />
</CardContent>
</Card>
<Card>
<CardHeader className="border-b-2">
<CardTitle className="text-lg">Custom Credential Service</CardTitle>
<CardDescription>
Configure your custom HTTP API for credential management.
</CardDescription>
</CardHeader>
<CardContent className="p-8">
<CustomCredentialServiceConfigForm />
</CardContent>
</Card>
</div>
);
}