enhanced settings view!

This commit is contained in:
munimunigamer 2026-01-16 21:31:29 -06:00
parent 09b070735a
commit b3b5db588b
9 changed files with 3296 additions and 4029 deletions

View file

@ -59,6 +59,11 @@ class DatabaseService {
);
}
async deleteSetting(key: string): Promise<void> {
const db = await this.getDb();
await db.execute('DELETE FROM settings WHERE key = ?', [key]);
}
// Story operations
async getAllStories(): Promise<Story[]> {
const db = await this.getDb();