-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relationship decompose route does not exist (#724)
* chore: remove unused nuget packages * refactor: rename RelationshipStatusChangedDomainEvent.Status to NewStatus * fix: only create external event in case of RelationshipStatusChangedDomainEvent if new status is not "ReadyForDeletion" * feat: remove RelationshipDecomposedDomainEvent * feat: add missing ExternalEventType mappings to ExternalEventDTO * fix: add route
- Loading branch information
Showing
22 changed files
with
176 additions
and
224 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
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
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 |
---|---|---|
@@ -1,48 +1,47 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<UserSecretsId>f114fba8-95dd-4fee-8385-af8e8a343c68</UserSecretsId> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<UserSecretsId>f114fba8-95dd-4fee-8385-af8e8a343c68</UserSecretsId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="8.0.2" /> | ||
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.6" /> | ||
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders" Version="0.22.0" /> | ||
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.6" /> | ||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" /> | ||
<PackageReference Include="ReHackt.Extensions.Options.Validation" Version="8.0.2" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.6" /> | ||
<ItemGroup> | ||
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="8.0.2"/> | ||
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0"/> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.6"/> | ||
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders" Version="0.22.0"/> | ||
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0"/> | ||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.6"/> | ||
<PackageReference Include="ReHackt.Extensions.Options.Validation" Version="8.0.2"/> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2"/> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.6"/> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<TreatAsUsed>true</TreatAsUsed> | ||
</PackageReference> | ||
<PackageReference Include="Serilog" Version="4.0.0" /> | ||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" /> | ||
<PackageReference Include="Serilog.Enrichers.ClientInfo" Version="2.0.3" /> | ||
<PackageReference Include="Serilog.Enrichers.Demystifier" Version="1.0.2" /> | ||
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" /> | ||
<PackageReference Include="Serilog.Exceptions" Version="8.4.0" /> | ||
<PackageReference Include="Serilog.Exceptions.EntityFrameworkCore" Version="8.4.0" /> | ||
<PackageReference Include="Serilog.Formatting.Compact" Version="3.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Http" Version="9.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0" /> | ||
</ItemGroup> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<TreatAsUsed>true</TreatAsUsed> | ||
</PackageReference> | ||
<PackageReference Include="Serilog" Version="4.0.0"/> | ||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1"/> | ||
<PackageReference Include="Serilog.Enrichers.ClientInfo" Version="2.0.3"/> | ||
<PackageReference Include="Serilog.Enrichers.Demystifier" Version="1.0.2"/> | ||
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1"/> | ||
<PackageReference Include="Serilog.Exceptions" Version="8.4.0"/> | ||
<PackageReference Include="Serilog.Exceptions.EntityFrameworkCore" Version="8.4.0"/> | ||
<PackageReference Include="Serilog.Formatting.Compact" Version="3.0.0"/> | ||
<PackageReference Include="Serilog.Sinks.Http" Version="9.0.0"/> | ||
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" /> | ||
<ProjectReference Include="..\BuildingBlocks\src\BuildingBlocks.API\BuildingBlocks.API.csproj" /> | ||
<ProjectReference Include="..\Modules\Challenges\src\Challenges.ConsumerApi\Challenges.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Devices\src\Devices.ConsumerApi\Devices.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Files\src\Files.ConsumerApi\Files.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Messages\src\Messages.ConsumerApi\Messages.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Quotas\src\Quotas.ConsumerApi\Quotas.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Relationships\src\Relationships.ConsumerApi\Relationships.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Synchronization\src\Synchronization.ConsumerApi\Synchronization.ConsumerApi.csproj" /> | ||
<ProjectReference Include="..\Modules\Tokens\src\Tokens.ConsumerApi\Tokens.ConsumerApi.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj"/> | ||
<ProjectReference Include="..\BuildingBlocks\src\BuildingBlocks.API\BuildingBlocks.API.csproj"/> | ||
<ProjectReference Include="..\Modules\Challenges\src\Challenges.ConsumerApi\Challenges.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Devices\src\Devices.ConsumerApi\Devices.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Files\src\Files.ConsumerApi\Files.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Messages\src\Messages.ConsumerApi\Messages.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Quotas\src\Quotas.ConsumerApi\Quotas.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Relationships\src\Relationships.ConsumerApi\Relationships.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Synchronization\src\Synchronization.ConsumerApi\Synchronization.ConsumerApi.csproj"/> | ||
<ProjectReference Include="..\Modules\Tokens\src\Tokens.ConsumerApi\Tokens.ConsumerApi.csproj"/> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.