-
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
Showing
23 changed files
with
374 additions
and
381 deletions.
There are no files selected for viewing
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
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 @@ | ||
# Logitar.Identity.Core | ||
|
||
Exposes domain aggregates, events, entities, value objects, exceptions and services of an Identity system. |
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,9 @@ | ||
using Logitar.EventSourcing; | ||
using MediatR; | ||
|
||
namespace Logitar.Identity.Core.Sessions.Events; | ||
|
||
/// <summary> | ||
/// The event raised when a session is deleted. | ||
/// </summary> | ||
public record SessionDeleted : DomainEvent, IDeleteEvent, INotification; |
10 changes: 5 additions & 5 deletions
10
...in/Sessions/Events/SessionRenewedEvent.cs → ...ty.Core/Sessions/Events/SessionRenewed.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
4 changes: 2 additions & 2 deletions
4
.../Sessions/Events/SessionSignedOutEvent.cs → ....Core/Sessions/Events/SessionSignedOut.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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
using Logitar.EventSourcing; | ||
using MediatR; | ||
|
||
namespace Logitar.Identity.Domain.Sessions.Events; | ||
namespace Logitar.Identity.Core.Sessions.Events; | ||
|
||
/// <summary> | ||
/// The event raised when an active session is signed-out. | ||
/// </summary> | ||
public class SessionSignedOutEvent : DomainEvent, INotification; | ||
public record SessionSignedOut : DomainEvent, INotification; |
6 changes: 3 additions & 3 deletions
6
...in/Sessions/Events/SessionUpdatedEvent.cs → ...ty.Core/Sessions/Events/SessionUpdated.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
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
Oops, something went wrong.