Files
infisical/frontend/pages/api/workspace/getLatestFileKey.js
2022-11-26 18:20:12 +09:00

31 lines
634 B
JavaScript

import SecurityClient from "~/utilities/SecurityClient";
import { PATH } from "../../../const";
/**
* Get the latest key pairs from a certain workspace
* @param {*} workspaceId
* @returns
*/
const getLatestFileKey = (workspaceId) => {
return SecurityClient.fetchCall(
PATH + "/api/v1/key/" + workspaceId + "/latest",
{
method: "GET",
headers: {
"Content-Type": "application/json",
},
}
).then(async (res) => {
if (res.status == 200) {
return await res.json();
} else {
console.log(
"Failed to get the latest key pairs for a certain project"
);
}
});
};
export default getLatestFileKey;