Skip to content

Commit c12a0a1

Browse files
rnwoodweb-flow
andauthored
feat: dark mode preference (#1887)
* Client settings persisted locally * Apply dark mode preference --------- Co-authored-by: smtp4dev-automation <noreply@github.com>
1 parent 7ea2583 commit c12a0a1

File tree

13 files changed

+675
-127
lines changed

13 files changed

+675
-127
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// If you have changed target frameworks, make sure to update the program path.
1212
"program": "${workspaceFolder}/Rnwood.Smtp4dev/bin/Debug/net8.0/Rnwood.Smtp4dev.dll",
1313
"cwd": "${workspaceFolder}/Rnwood.Smtp4dev",
14-
"args": ["--recreatedb", "--urls", "http://localhost:5000", "--basepath=/smtp4dev", "--debugsettings"],
14+
"args": ["--recreatedb", "--urls", "http://localhost:5000", "--debugsettings"],
1515
"stopAtEntry": false,
1616
"internalConsoleOptions": "openOnSessionStart",
1717
"preLaunchTask": "build Rnwood.Smtp4dev",

Rnwood.Smtp4dev/ApiModel/ClientSettings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ public class ClientSettings
44
{
55
public int PageSize { get; set; }
66
public bool AutoViewNewMessages { get; set; }
7+
public string DarkMode { get; set; }
78
}
89
}

0 commit comments

Comments
 (0)