Add modern notes workspace with core legacy note functions
This commit is contained in:
@@ -1090,6 +1090,11 @@ app.get('/notes', async (c) => {
|
||||
return c.html(html);
|
||||
});
|
||||
|
||||
app.get('/notes-workspace', async (c) => {
|
||||
const html = await Bun.file(new URL('./notes-workspace.html', import.meta.url)).text();
|
||||
return c.html(html);
|
||||
});
|
||||
|
||||
app.get('/tasks', async (c) => {
|
||||
const html = await Bun.file(new URL('./tasks.html', import.meta.url)).text();
|
||||
return c.html(html);
|
||||
|
||||
Reference in New Issue
Block a user