From 677d0175bf34e9cee73f7e9eb7f460959a38eae5 Mon Sep 17 00:00:00 2001 From: Andrii Voznesenskyi Date: Tue, 17 Sep 2024 01:03:16 +0200 Subject: [PATCH] (#412) notifications: update namespaces --- .../Events/External/Comments/Handlers/CommentUpdatedHandler.cs | 2 +- .../Events/External/Events/EventCreated.cs | 2 +- .../Events/External/Events/EventDeleted.cs | 2 +- .../Events/External/Events/EventParticipantAdded.cs | 2 +- .../Events/External/Events/EventParticipantRemoved.cs | 2 +- .../Events/External/Events/EventUpdated.cs | 2 +- .../Events/External/Events/Handlers/EventCreatedHandler.cs | 2 +- .../Events/External/Events/Handlers/EventDeletedHandler.cs | 2 +- .../External/Events/Handlers/EventParticipantAddedHandler.cs | 2 +- .../External/Events/Handlers/EventParticipantRemovedHandler.cs | 2 +- .../Events/Handlers/StudentCancelledInterestInEventHandler.cs | 2 +- .../Events/Handlers/StudentCancelledSignUpToEventHandler.cs | 2 +- .../Events/Handlers/StudentShowedInterestInEventHandler.cs | 2 +- .../External/Events/Handlers/StudentSignedUpToEventHandler.cs | 2 +- .../Events/External/Events/StudentCancelledInterestInEvent.cs | 2 +- .../Events/External/Events/StudentCancelledSignUpToEvent.cs | 2 +- .../Events/External/Events/StudentShowedInterestInEvent.cs | 2 +- .../Events/External/Events/StudentSignedUpToEvent.cs | 2 +- .../Events/External/Friends/FriendAdded.cs | 2 +- .../Events/External/Friends/FriendInvited.cs | 2 +- .../Events/External/Friends/FriendRequestCreated.cs | 2 +- .../Events/External/Friends/FriendRequestSent.cs | 2 +- .../Events/External/Friends/Handlers/FriendAddedHandler.cs | 2 +- .../Events/External/Friends/Handlers/FriendInvitedHandler.cs | 2 +- .../External/Friends/Handlers/FriendRequestCreatedHandler.cs | 2 +- .../External/Friends/Handlers/FriendRequestSentHandler.cs | 2 +- .../Friends/Handlers/PendingFriendRequestAcceptedHandler.cs | 2 +- .../Events/External/Friends/PendingFriendAccepted.cs | 2 +- .../Events/External/Friends/PendingFriendDeclined.cs | 2 +- .../Events/External/Identity/EmailVerified.cs | 2 +- .../Events/External/Identity/Handlers/EmailVerifiedHandler.cs | 2 +- .../Identity/Handlers/PasswordResetTokenGeneratedHandler.cs | 2 +- .../Events/External/Identity/Handlers/SignedUpHandler.cs | 2 +- .../External/Identity/Handlers/TwoFactorCodeGeneratedHandler.cs | 2 +- .../Events/External/Identity/PasswordReset.cs | 2 +- .../Events/External/Identity/PasswordResetTokenGenerated.cs | 2 +- .../Events/External/Identity/SignedUp.cs | 2 +- .../Events/External/Identity/TwoFactorCodeGenerated.cs | 2 +- .../Events/External/Posts/Handlers/PostCreatedHandler.cs | 2 +- .../Events/External/Posts/Handlers/PostUpdatedHandler.cs | 2 +- .../Events/External/Posts/PostCreated.cs | 2 +- .../Events/External/Posts/PostUpdated.cs | 2 +- .../External/Reactions/Handlers/ReactionCreatedHandler.cs | 2 +- .../Events/External/Reactions/ReactionCreated.cs | 2 +- .../Events/External/Reports/Handlers/ReportCancelledHandler.cs | 2 +- .../Events/External/Reports/Handlers/ReportCreatedHandler.cs | 2 +- .../Events/External/Reports/Handlers/ReportDeletedHandler.cs | 2 +- .../Events/External/Reports/Handlers/ReportRejectedHandler.cs | 2 +- .../Events/External/Reports/Handlers/ReportResolvedHandler.cs | 2 +- .../External/Reports/Handlers/ReportReviewStartedHandler.cs | 2 +- .../Events/External/Reports/ReportCancelled.cs | 2 +- .../Events/External/Reports/ReportCreated.cs | 2 +- .../Events/External/Reports/ReportDeleted.cs | 2 +- .../Events/External/Reports/ReportRejected.cs | 2 +- .../Events/External/Reports/ReportResolved.cs | 2 +- .../Events/External/Reports/ReportReviewStarted.cs | 2 +- 56 files changed, 56 insertions(+), 56 deletions(-) diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Comments/Handlers/CommentUpdatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Comments/Handlers/CommentUpdatedHandler.cs index f116c2af8..a3d289a79 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Comments/Handlers/CommentUpdatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Comments/Handlers/CommentUpdatedHandler.cs @@ -14,7 +14,7 @@ using MiniSpace.Services.Notifications.Application.Dto.Events; using MiniSpace.Services.Notifications.Application.Dto.Comments; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Comments.Handlers { public class CommentUpdatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventCreated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventCreated.cs index 4179cc5a1..11bc93d8c 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventCreated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventCreated.cs @@ -3,7 +3,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class EventCreated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventDeleted.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventDeleted.cs index 7fdba72a3..85af5e550 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventDeleted.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventDeleted.cs @@ -3,7 +3,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class EventDeleted : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantAdded.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantAdded.cs index 8b2308806..cf9438510 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantAdded.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantAdded.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class EventParticipantAdded: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantRemoved.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantRemoved.cs index e206982f9..79e9a02ae 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantRemoved.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventParticipantRemoved.cs @@ -3,7 +3,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class EventParticipantRemoved: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventUpdated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventUpdated.cs index a38251bab..15ffa8ae2 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventUpdated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/EventUpdated.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using Convey.CQRS.Events; -namespace MiniSpace.Services.Notifications.Application.Events +namespace MiniSpace.Services.Notifications.Application.Events.Events { [Contract] public class EventUpdated(Guid eventId, DateTime updatedAt, Guid updatedBy, IEnumerable mediaFilesIds) : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventCreatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventCreatedHandler.cs index d48f79f9b..e3570184a 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventCreatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventCreatedHandler.cs @@ -14,7 +14,7 @@ using Microsoft.AspNetCore.SignalR; using MiniSpace.Services.Notifications.Application.Hubs; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class EventCreatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventDeletedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventDeletedHandler.cs index 0ca3b5dd5..8a410a230 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventDeletedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventDeletedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Entities; using MiniSpace.Services.Notifications.Core.Repositories; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class EventDeletedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantAddedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantAddedHandler.cs index 30d9e6099..e917f0fa1 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantAddedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantAddedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Entities; using MiniSpace.Services.Notifications.Core.Repositories; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class EventParticipantAddedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantRemovedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantRemovedHandler.cs index c3b4971e0..1096b31ed 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantRemovedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/EventParticipantRemovedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Entities; using MiniSpace.Services.Notifications.Core.Repositories; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class EventParticipantRemovedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledInterestInEventHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledInterestInEventHandler.cs index c3c6a908a..17e950bc8 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledInterestInEventHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledInterestInEventHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class StudentCancelledInterestInEventHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledSignUpToEventHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledSignUpToEventHandler.cs index 6d7a39398..102877993 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledSignUpToEventHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentCancelledSignUpToEventHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class StudentCancelledSignUpToEventHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentShowedInterestInEventHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentShowedInterestInEventHandler.cs index 1a54458fc..652a6f7ea 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentShowedInterestInEventHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentShowedInterestInEventHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class StudentShowedInterestInEventHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentSignedUpToEventHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentSignedUpToEventHandler.cs index 790954ab5..578a91e4b 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentSignedUpToEventHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/Handlers/StudentSignedUpToEventHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Events.Handlers { public class StudentSignedUpToEventHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledInterestInEvent.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledInterestInEvent.cs index 89d40471a..1ddefe96c 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledInterestInEvent.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledInterestInEvent.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class StudentCancelledInterestInEvent: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledSignUpToEvent.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledSignUpToEvent.cs index 04e3b172d..f1b285368 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledSignUpToEvent.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentCancelledSignUpToEvent.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class StudentCancelledSignUpToEvent: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentShowedInterestInEvent.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentShowedInterestInEvent.cs index 5821e4ac3..756a5c465 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentShowedInterestInEvent.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentShowedInterestInEvent.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class StudentShowedInterestInEvent: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentSignedUpToEvent.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentSignedUpToEvent.cs index 7d6fa1009..4646e0cdf 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentSignedUpToEvent.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Events/StudentSignedUpToEvent.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Events { [Message("events")] public class StudentSignedUpToEvent: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendAdded.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendAdded.cs index e9be8b8d6..17fc3668a 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendAdded.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendAdded.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends { [Contract] public class FriendAdded : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendInvited.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendInvited.cs index 1a0bb6880..365dafc04 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendInvited.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendInvited.cs @@ -2,7 +2,7 @@ using Convey.MessageBrokers; using MiniSpace.Services.Notifications.Core.Events; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends { [Message("friends")] public class FriendInvited : IEvent, IDomainEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestCreated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestCreated.cs index 14432b285..b4fd91639 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestCreated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestCreated.cs @@ -2,7 +2,7 @@ using Convey.MessageBrokers; using System; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends { [Contract] public class FriendRequestCreated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestSent.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestSent.cs index 59205c791..17df04970 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestSent.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/FriendRequestSent.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends { [Contract] public class FriendRequestSent : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendAddedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendAddedHandler.cs index c1d7c0d56..707af2f16 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendAddedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendAddedHandler.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using MiniSpace.Services.Notifications.Application.Exceptions; // This event handler is not used! ⁉️ -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends.Handlers { public class FriendAddedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendInvitedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendInvitedHandler.cs index a5426000d..8de9f7334 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendInvitedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendInvitedHandler.cs @@ -11,7 +11,7 @@ using Microsoft.Extensions.Logging; using MiniSpace.Services.Notifications.Application.Dto; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends.Handlers { public class FriendInvitedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestCreatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestCreatedHandler.cs index afa812cb0..e5c8bcf1b 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestCreatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestCreatedHandler.cs @@ -12,7 +12,7 @@ using System.Threading.Tasks; using System.Threading; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends.Handlers { public class FriendRequestCreatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestSentHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestSentHandler.cs index 0f8a66822..8119557e5 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestSentHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/FriendRequestSentHandler.cs @@ -12,7 +12,7 @@ using MiniSpace.Services.Notifications.Application.Hubs; using MiniSpace.Services.Notifications.Application.Dto; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends.Handlers { public class FriendRequestSentHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/PendingFriendRequestAcceptedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/PendingFriendRequestAcceptedHandler.cs index 11f1b3270..7985bbd7f 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/PendingFriendRequestAcceptedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/Handlers/PendingFriendRequestAcceptedHandler.cs @@ -12,7 +12,7 @@ using MiniSpace.Services.Notifications.Application.Dto; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends.Handlers { public class PendingFriendRequestAcceptedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendAccepted.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendAccepted.cs index 1bcbb7286..569367886 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendAccepted.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendAccepted.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends { [Contract] public class PendingFriendAccepted : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendDeclined.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendDeclined.cs index df1e2fb52..c5fdb486e 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendDeclined.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Friends/PendingFriendDeclined.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Friends { [Message("friends")] public class PendingFriendDeclined : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/EmailVerified.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/EmailVerified.cs index 753772c2b..8c0332ab6 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/EmailVerified.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/EmailVerified.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity { [Message("identity")] public class EmailVerified : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/EmailVerifiedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/EmailVerifiedHandler.cs index c97cb6535..9964af3db 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/EmailVerifiedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/EmailVerifiedHandler.cs @@ -6,7 +6,7 @@ using MiniSpace.Services.Notifications.Core.Entities; using MiniSpace.Services.Notifications.Core.Repositories; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity.Handlers { public class EmailVerifiedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/PasswordResetTokenGeneratedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/PasswordResetTokenGeneratedHandler.cs index b50d55deb..6fc0856e2 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/PasswordResetTokenGeneratedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/PasswordResetTokenGeneratedHandler.cs @@ -7,7 +7,7 @@ using System.Threading; using MiniSpace.Services.Notifications.Application.Services.Clients; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity.Handlers { public class PasswordResetTokenGeneratedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/SignedUpHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/SignedUpHandler.cs index b10d3afeb..a941fdbee 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/SignedUpHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/SignedUpHandler.cs @@ -7,7 +7,7 @@ using MiniSpace.Services.Notifications.Core.Entities; using MiniSpace.Services.Notifications.Core.Repositories; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity.Handlers { public class SignedUpHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/TwoFactorCodeGeneratedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/TwoFactorCodeGeneratedHandler.cs index 3eb783b9a..33359bc56 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/TwoFactorCodeGeneratedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/Handlers/TwoFactorCodeGeneratedHandler.cs @@ -8,7 +8,7 @@ using MiniSpace.Services.Notifications.Application.Services.Clients; using Microsoft.Extensions.Logging; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity.Handlers { public class TwoFactorCodeGeneratedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordReset.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordReset.cs index 471386718..3e2ab6fb2 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordReset.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordReset.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity { [Message("identity")] public class PasswordReset : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordResetTokenGenerated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordResetTokenGenerated.cs index fef185689..125906c63 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordResetTokenGenerated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/PasswordResetTokenGenerated.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity { [Message("identity")] public class PasswordResetTokenGenerated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/SignedUp.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/SignedUp.cs index c17acad68..a1764cd1c 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/SignedUp.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/SignedUp.cs @@ -2,7 +2,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity { [Message("identity")] public class SignedUp : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/TwoFactorCodeGenerated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/TwoFactorCodeGenerated.cs index 9ed48cd77..e3777c63b 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/TwoFactorCodeGenerated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Identity/TwoFactorCodeGenerated.cs @@ -2,7 +2,7 @@ using Convey.MessageBrokers; using System; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Identity { [Message("identity")] public class TwoFactorCodeGenerated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostCreatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostCreatedHandler.cs index f23a7e3ee..676aa3634 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostCreatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostCreatedHandler.cs @@ -12,7 +12,7 @@ using MiniSpace.Services.Notifications.Application.Hubs; using Microsoft.Extensions.Logging; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Posts.Handlers { public class PostCreatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostUpdatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostUpdatedHandler.cs index d2103d9a4..18672c9b4 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostUpdatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/Handlers/PostUpdatedHandler.cs @@ -12,7 +12,7 @@ using MiniSpace.Services.Notifications.Application.Hubs; using Microsoft.Extensions.Logging; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Posts.Handlers { public class PostUpdatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostCreated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostCreated.cs index 26511ddc0..bcb2e89e6 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostCreated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostCreated.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Posts { [Message("posts")] public class PostCreated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostUpdated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostUpdated.cs index c984e680d..96064f12d 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostUpdated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Posts/PostUpdated.cs @@ -2,7 +2,7 @@ using Convey.MessageBrokers; using System; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Posts { [Message("posts")] public class PostUpdated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/Handlers/ReactionCreatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/Handlers/ReactionCreatedHandler.cs index 338247bb9..79374036d 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/Handlers/ReactionCreatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/Handlers/ReactionCreatedHandler.cs @@ -12,7 +12,7 @@ using MiniSpace.Services.Notifications.Application.Hubs; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reactions.Handlers { public class ReactionCreatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/ReactionCreated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/ReactionCreated.cs index 9436bcca1..1e19871df 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/ReactionCreated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reactions/ReactionCreated.cs @@ -2,7 +2,7 @@ using Convey.MessageBrokers; using System; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reactions { [Message("reactions")] public class ReactionCreated : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCancelledHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCancelledHandler.cs index 47b9f206b..c4ada1cb6 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCancelledHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCancelledHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Entities; using MiniSpace.Services.Notifications.Core.Repositories; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports.Handlers { public class ReportCancelledHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCreatedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCreatedHandler.cs index c11203a0e..f4aedf53b 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCreatedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportCreatedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports.Handlers { public class ReportCreatedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportDeletedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportDeletedHandler.cs index a690ccaed..d9ee4f08e 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportDeletedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportDeletedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports.Handlers { public class ReportDeletedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportRejectedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportRejectedHandler.cs index 0a58259ae..e00e6df29 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportRejectedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportRejectedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports.Handlers { public class ReportRejectedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportResolvedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportResolvedHandler.cs index c7aaab196..3d2efb665 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportResolvedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportResolvedHandler.cs @@ -7,7 +7,7 @@ using MiniSpace.Services.Notifications.Application.Services; using MiniSpace.Services.Notifications.Application.Services.Clients; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports.Handlers { public class ReportResolvedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportReviewStartedHandler.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportReviewStartedHandler.cs index 6ace0ecac..dc438778f 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportReviewStartedHandler.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/Handlers/ReportReviewStartedHandler.cs @@ -11,7 +11,7 @@ using MiniSpace.Services.Notifications.Core.Repositories; using MiniSpace.Services.Notifications.Application.Services; -namespace MiniSpace.Services.Notifications.Application.Events.External.Handlers +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports.Handlers { public class ReportReviewStartedHandler : IEventHandler { diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCancelled.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCancelled.cs index 616ff61fe..7561fc7ec 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCancelled.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCancelled.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports { [Message("reports")] public class ReportCancelled : IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCreated.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCreated.cs index dab7a0b61..005c2390b 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCreated.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportCreated.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports { [Message("reports")] public class ReportCreated: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportDeleted.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportDeleted.cs index 883b63a75..fb9253ccf 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportDeleted.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportDeleted.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports { [Message("reports")] public class ReportDeleted: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportRejected.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportRejected.cs index 610bfd4e8..9010259d0 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportRejected.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportRejected.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports { [Message("reports")] public class ReportRejected: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportResolved.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportResolved.cs index b71848338..3325591e9 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportResolved.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportResolved.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports { [Message("reports")] public class ReportResolved: IEvent diff --git a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportReviewStarted.cs b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportReviewStarted.cs index 6e7a3394f..894658b16 100644 --- a/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportReviewStarted.cs +++ b/MiniSpace.Services.Notifications/src/MiniSpace.Services.Notifications.Application/Events/External/Reports/ReportReviewStarted.cs @@ -1,7 +1,7 @@ using Convey.CQRS.Events; using Convey.MessageBrokers; -namespace MiniSpace.Services.Notifications.Application.Events.External +namespace MiniSpace.Services.Notifications.Application.Events.External.Reports { [Message("reports")] public class ReportReviewStarted : IEvent