Remove system settings functionality and related database migrations

This commit is contained in:
2025-10-11 21:04:01 +02:00
parent 8920027a9c
commit d40321685e
9 changed files with 2 additions and 168 deletions

View File

@@ -68,11 +68,9 @@ type SessionStore interface {
CleanExpiredSessions() error
}
// SystemStore defines the methods for interacting with system settings and stats in the database
// SystemStore defines the methods for interacting with system stats in the database
type SystemStore interface {
GetSystemStats() (*UserStats, error)
GetSystemSetting(key string) (string, error)
SetSystemSetting(key, value string) error
}
type StructScanner interface {