Fix for login

This commit is contained in:
Aurélie Delhaie
2022-05-15 21:26:35 +02:00
parent 22ea6b0e8d
commit 246fe2fe6c
6 changed files with 57 additions and 25 deletions

View File

@@ -19,10 +19,10 @@ type PathConfiguration struct {
}
type DatabaseConfiguration struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Username string `yaml:"username"`
Password string `yaml:"password"`
Host string `yaml:"host"`
Port int `yaml:"port"`
Username string `yaml:"username"`
Password *string `yaml:"password"`
}
type FeaturesConfiguration struct {