-
-
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.
- Loading branch information
1 parent
d16e70e
commit d134f13
Showing
9 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
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,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Handlers\Events\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\crs\CommonComponents\Contracts\Contracts.csproj" /> | ||
<ProjectReference Include="..\crs\CommonComponents\EventBus\EventBus.MassTransit\EventBus.MassTransit.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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,3 @@ | ||
global using EventBus.MassTransit.Handlers; | ||
global using Contracts.Services.Identity.Commands; | ||
global using MassTransit; |
10 changes: 10 additions & 0 deletions
10
Email.MessageBus/Handlers/Commands/UserCreatedConfirmationEmailSendCommandHandler.cs
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,10 @@ | ||
namespace Email.MessageBus.Handlers.Commands; | ||
|
||
public sealed class UserCreatedConfirmationEmailSendCommandHandler | ||
: IntegrationCommandHandler<UserCreatedConfirmationEmailSendCommand> | ||
{ | ||
public override Task Handle(ConsumeContext<UserCreatedConfirmationEmailSendCommand> context) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} |
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
File renamed without changes.
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
3 changes: 3 additions & 0 deletions
3
...ication/Emails/Commands/SendConfirmationUserMessage/SendConfirmationUserMessageCommand.cs
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,3 @@ | ||
namespace Email.Application.Emails.Commands.SendConfirmationUserMessage; | ||
|
||
public sealed record SendConfirmationUserMessageCommand(Guid UserId, string ReturnUrl); |
3 changes: 3 additions & 0 deletions
3
.../Emails/Commands/SendConfirmationUserMessage/SendConfirmationUserMessageCommandHandler.cs
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,3 @@ | ||
namespace Email.Application.Emails.Commands.SendConfirmationUserMessage; | ||
|
||
public sealed record SendConfirmationUserMessageCommandHandler(Guid userId); |
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