feat: add a new setting that disables the display of the disk usage (#2136)

This commit is contained in:
Gabriel Alencar
2023-02-15 19:30:48 -03:00
committed by GitHub
parent 60d1e2d291
commit 428c1c606d
29 changed files with 71 additions and 26 deletions

View File

@@ -2,9 +2,10 @@ package settings
// Branding contains the branding settings of the app.
type Branding struct {
Name string `json:"name"`
DisableExternal bool `json:"disableExternal"`
Files string `json:"files"`
Theme string `json:"theme"`
Color string `json:"color"`
Name string `json:"name"`
DisableExternal bool `json:"disableExternal"`
DisableUsedPercentage bool `json:"disableUsedPercentage"`
Files string `json:"files"`
Theme string `json:"theme"`
Color string `json:"color"`
}