mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Fixed service token bug
This commit is contained in:
@@ -37,6 +37,7 @@ export const useCreateServiceToken = () => {
|
||||
return useMutation<CreateServiceTokenRes, {}, CreateServiceTokenDTO>({
|
||||
mutationFn: async (body) => {
|
||||
const { data } = await apiRequest.post('/api/v2/service-token/', body);
|
||||
data.serviceToken += `.${ body.randomBytes}`;
|
||||
return data;
|
||||
},
|
||||
onSuccess: ({ serviceTokenData: { workspace } }) => {
|
||||
|
||||
@@ -18,6 +18,7 @@ export type CreateServiceTokenDTO = {
|
||||
encryptedKey: string;
|
||||
iv: string;
|
||||
tag: string;
|
||||
randomBytes: string;
|
||||
};
|
||||
|
||||
export type CreateServiceTokenRes = {
|
||||
|
||||
@@ -31,11 +31,8 @@ import {
|
||||
useUpdateWsEnvironment
|
||||
} from '@app/hooks/api';
|
||||
|
||||
|
||||
import { AutoCapitalizationSection } from './components/AutoCapitalizationSection/AutoCapitalizationSection';
|
||||
|
||||
import { SecretTagsSection } from './components/SecretTagsSection';
|
||||
|
||||
import {
|
||||
CopyProjectIDSection,
|
||||
CreateServiceToken,
|
||||
@@ -226,7 +223,8 @@ export const ProjectSettingsPage = () => {
|
||||
environment,
|
||||
expiresIn: Number(expiresIn),
|
||||
name,
|
||||
workspaceId: workspaceID
|
||||
workspaceId: workspaceID,
|
||||
randomBytes
|
||||
});
|
||||
console.log(res);
|
||||
createNotification({
|
||||
|
||||
Reference in New Issue
Block a user