Skip to content

Commit fc19076

Browse files
committed
fix: [#587] update Index TOML config file
Relates to: torrust/torrust-index#670 These two config option in the Index TOML config file have been removed: ```toml [auth] email_on_signup = "optional" [mail] email_verification_enabled = false ``` We need to replace them with: ```toml [registration] [registration.email] ```
1 parent 88a7777 commit fc19076

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

share/default/config/index.private.e2e.container.sqlite3.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,9 @@ connect_url = "sqlite:///var/lib/torrust/index/database/e2e_testing_sqlite3.db?m
1111
[mail.smtp]
1212
port = 1025
1313
server = "mailcatcher"
14+
15+
[registration]
16+
17+
[registration.email]
18+
#required = false
19+
#verified = false

share/default/config/index.public.e2e.container.sqlite3.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,9 @@ connect_url = "sqlite:///var/lib/torrust/index/database/e2e_testing_sqlite3.db?m
1111
[mail]
1212
port = 1025
1313
server = "mailcatcher"
14+
15+
[registration]
16+
17+
[registration.email]
18+
#required = false
19+
#verified = false

0 commit comments

Comments
 (0)