mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
36 lines
761 B
JavaScript
36 lines
761 B
JavaScript
import { PATH } from "~/const";
|
|
import SecurityClient from "~/utilities/SecurityClient.js";
|
|
|
|
/**
|
|
* This function fetches the encrypted secrets from the .env file
|
|
* @param {*} workspaceId
|
|
* @param {*} env
|
|
* @returns
|
|
*/
|
|
const getSecrets = async (workspaceId, env) => {
|
|
return SecurityClient.fetchCall(
|
|
PATH +
|
|
"/api/v1/secret/" +
|
|
workspaceId +
|
|
"?" +
|
|
new URLSearchParams({
|
|
environment: env,
|
|
channel: "web",
|
|
}),
|
|
{
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
}
|
|
).then(async (res) => {
|
|
if (res.status == 200) {
|
|
return await res.json();
|
|
} else {
|
|
console.log("Failed to get project secrets");
|
|
}
|
|
});
|
|
};
|
|
|
|
export default getSecrets;
|