-
Notifications
You must be signed in to change notification settings - Fork 0
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
233 added Email and Sms services #9
Conversation
added error message and set changed to init for code security
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct sms templates, code styling
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't push configuration values
public string UserName { get; init; } | ||
public string PhoneNumber { get; init; } | ||
public string? Subject { get; init; } | ||
public string? Code { get; init; } = "12345"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this message be sent by default?
namespace CheckDrive.Domain.Enums; | ||
public enum SmsType |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line
public enum SmsType | ||
{ | ||
ForgotPassword, | ||
MessageType |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what type is this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe NotificationMessage
@@ -35,6 +32,7 @@ | |||
<PackageReference Include="Serilog" Version="3.1.1" /> | |||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" /> | |||
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" /> | |||
<PackageReference Include="Twilio" Version="7.4.0" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we use this package?
namespace CheckDrive.Infrastructure.Sms.Factories; | ||
internal interface ISmsMetadataFactory |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
separate with an empty line
namespace CheckDrive.Infrastructure.Sms.Factories; | ||
internal class SmsMetadataFactory : ISmsMetadataFactory |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line
}; | ||
public SmsMetadata Create( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line
{ | ||
private readonly Dictionary<SmsType, string> smsSubjects = new() | ||
{ | ||
{ SmsType.MessageType, "Message" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Notification
// var template = GetTemplate(metadata.SmsType); | ||
// var messageContent = await BuildMessageContent(template, metadata); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need this code?
weekly-master-update
Update EmailConfiguration.cs
Migration history were not created properly needed to recreate history
No description provided.