adding works, viewing works, but viewing specific blogs are not implemented yet.

This commit is contained in:
2026-06-28 16:53:04 -05:00
parent 587fcb3c43
commit 843c34a287
6 changed files with 175 additions and 2 deletions
Vendored
+7
View File
@@ -6,6 +6,13 @@ export interface HomelabApp {
ssh_address: string | null;
}
export interface Blog {
id: string;
title: string;
content: string;
reference: String[]; // list of app ids
}
// Defines the custom attributes Tiptap will store in the DOM/JSON schema
export interface AppMentionAttributes {
id: string;