mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-25 05:02:09 +00:00
17 lines
427 B
TypeScript
17 lines
427 B
TypeScript
import { error } from '@sveltejs/kit';
|
|
import { trpc } from '$lib/store';
|
|
import type { PageLoad } from './$types';
|
|
export const ssr = false;
|
|
|
|
export const load: PageLoad = async ({ params }) => {
|
|
try {
|
|
const { id } = params;
|
|
const { data } = await trpc.services.getSecrets.query({ id });
|
|
return data;
|
|
} catch (err) {
|
|
throw error(500, {
|
|
message: 'An unexpected error occurred, please try again later.'
|
|
});
|
|
}
|
|
};
|