File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file. For commit
15
15
- some light value validation on certain fields
16
16
- removed recaptcha -- was disabled and not used before.
17
17
- moved ` recaptcha ` and ` signup ` configs to ` auth.methods.password `
18
+ - also pushes to ghcr ` ghcr.io/gtsteffaniak/filebrowser ` https://github.com/gtsteffaniak/filebrowser/issues/470
18
19
19
20
** BugFixes** :
20
21
- fix scope reset on restart https://github.com/gtsteffaniak/filebrowser/issues/515
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ type LoginMethods struct {
37
37
}
38
38
39
39
type PasswordAuthConfig struct {
40
- Enabled bool `json:"enabled" validate:"required" `
40
+ Enabled bool `json:"enabled"`
41
41
MinLength int `json:"minLength" validate:"omitempty,min=5"`
42
42
Signup bool `json:"signup" validate:"omitempty"`
43
43
Recaptcha Recaptcha `json:"recaptcha" validate:"omitempty"`
@@ -50,7 +50,7 @@ type Recaptcha struct {
50
50
}
51
51
52
52
type ProxyAuthConfig struct {
53
- Enabled bool `json:"enabled" validate:"required" `
53
+ Enabled bool `json:"enabled"`
54
54
CreateUser bool `json:"createUser"`
55
55
Header string `json:"header"`
56
56
}
You can’t perform that action at this time.
0 commit comments