-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new subscriber validations from form data
- Loading branch information
1 parent
2e63af7
commit e2e7d51
Showing
9 changed files
with
360 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
mod new_subscriber; | ||
mod subscriber_name; | ||
mod subscriber_email; | ||
|
||
|
||
pub use subscriber_name::SubscriberName; | ||
pub use subscriber_email::SubscriberEmail; | ||
pub use new_subscriber::NewSubscriber; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
use crate::domain::{SubscriberEmail, SubscriberName}; | ||
|
||
pub struct NewSubscriber { | ||
pub email: SubscriberEmail, | ||
pub name: SubscriberName, | ||
} |
Oops, something went wrong.