Adding empty API routes

This commit is contained in:
Eric van der Vlist 2023-03-03 09:56:04 +01:00
parent 7513d723ef
commit 74728baf12
3 changed files with 17 additions and 1 deletions

View File

@ -7,7 +7,8 @@ export const put = async (
id: string,
content: any,
isNew: boolean = false,
db = 'dyomedea_users'
db = 'dyomedea_users',
overwrite_ = false
) => {
const credentials = adminCredentials();
if (!credentials) {
@ -19,6 +20,9 @@ export const put = async (
const previous = await get(id, db);
if (!!previous) {
content._rev = previous._rev;
if (!overwrite_) {
content.__ = previous.__;
}
}
}

View File

@ -0,0 +1,6 @@
import { APIEvent, json } from 'solid-start/api';
export async function GET({ params, env }: APIEvent) {
console.log({ caller: 'api/conf GET', params });
return json({ params, env, response: 'OK' });
}

View File

@ -0,0 +1,6 @@
import { APIEvent, json } from 'solid-start/api';
export async function GET({ params, env }: APIEvent) {
console.log({ caller: 'api/conf GET', params });
return json({ params, env, response: 'OK' });
}