-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration overhaul: replace primitive types in configuration with richer types #600
Merged
josecelano
merged 9 commits into
torrust:develop
from
josecelano:599-configuration-overhaul-replace-primitive-types-in-configuration-with-richer-types
May 24, 2024
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
josecelano
force-pushed
the
599-configuration-overhaul-replace-primitive-types-in-configuration-with-richer-types
branch
from
May 22, 2024 12:31
be35927
to
fc5adf4
Compare
josecelano
force-pushed
the
599-configuration-overhaul-replace-primitive-types-in-configuration-with-richer-types
branch
from
May 22, 2024 12:57
23888cf
to
ddbab07
Compare
…database::Database
We will use the type `Mailbox` in the configuration and it needs to be serializable.
We were using a cusomt type but sqlx defines it as a URL. WE can validate this type in the configration and let the app domain validate if the connection URL is a valid one. For example, if the app supports the database driver. Otherwise we have to change this first level valitation anytime we support a new DB.
josecelano
force-pushed
the
599-configuration-overhaul-replace-primitive-types-in-configuration-with-richer-types
branch
from
May 23, 2024 14:37
d40311d
to
b1d5267
Compare
josecelano
force-pushed
the
599-configuration-overhaul-replace-primitive-types-in-configuration-with-richer-types
branch
from
May 24, 2024 07:31
7900f12
to
a95abfd
Compare
josecelano
force-pushed
the
599-configuration-overhaul-replace-primitive-types-in-configuration-with-richer-types
branch
from
May 24, 2024 07:42
a95abfd
to
8e53982
Compare
ACK ec1d39a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replace primitive types in configuration with richer types.
Subtasks
torrust_index::config::v1::auth::Auth
torrust_index::config::v1::database::Database
torrust_index::config::v1::mail::Mail
torrust_index::config::v1::net::Network
torrust_index::config::v1::tracker::Tracker
torrust_index::config::v1::Settings