Allow some branding customization.
This commit is contained in:
parent
21d491843f
commit
3cfbe0c89b
4 changed files with 49 additions and 9 deletions
|
|
@ -38,10 +38,16 @@ type Theme struct {
|
|||
}
|
||||
|
||||
type Server struct {
|
||||
Host string `yaml:"host"`
|
||||
Port uint16 `yaml:"port"`
|
||||
AssetsPath string `yaml:"assets-path"`
|
||||
StartedAt time.Time `yaml:"-"`
|
||||
Host string `yaml:"host"`
|
||||
Port uint16 `yaml:"port"`
|
||||
AssetsPath string `yaml:"assets-path"`
|
||||
StartedAt time.Time `yaml:"-"`
|
||||
}
|
||||
|
||||
type Branding struct {
|
||||
Show bool `yaml:show`
|
||||
Name string `yaml:name`
|
||||
ShortName string `yaml:"short-name"`
|
||||
}
|
||||
|
||||
type Column struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue