27 lines
667 B
TypeScript
27 lines
667 B
TypeScript
export const load = async ({ locals, setHeaders }) => {
|
|
const getCorporateLobbyingTracker = async () => {
|
|
const { apiKey, apiURL, user } = locals;
|
|
|
|
const response = await fetch(apiURL + "/lobbying-tracker", {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"X-API-KEY": apiKey,
|
|
},
|
|
});
|
|
|
|
let output = await response.json();
|
|
|
|
output = user?.tier !== "Pro" ? output?.slice(0, 6) : output;
|
|
|
|
setHeaders({ "cache-control": "public, max-age=3000" });
|
|
|
|
return output;
|
|
};
|
|
|
|
// Make sure to return a promise
|
|
return {
|
|
getCorporateLobbyingTracker: await getCorporateLobbyingTracker(),
|
|
};
|
|
};
|