fix: api keys authentication does not work #1511 (#1512)

* fix: api keys authentication does not work #1511

* chore: add ip and user-agent to logs of unauthenticated api-keys
This commit is contained in:
Meier Lukas
2024-11-20 21:55:04 +01:00
committed by GitHub
parent a2a65abd3d
commit 72eda1f225
3 changed files with 38 additions and 11 deletions

View File

@@ -23,7 +23,7 @@ export const ApiKeysManagement = ({ apiKeys }: ApiKeysManagementProps) => {
const { mutate, isPending } = clientApi.apiKeys.create.useMutation({
async onSuccess(data) {
openModal({
apiKey: data.randomToken,
apiKey: data.apiKey,
});
await revalidatePathActionAsync("/manage/tools/api");
},