-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate IdentityServer4 -> Duende IdentityServer
- Loading branch information
1 parent
26a5567
commit 4288433
Showing
392 changed files
with
14,283 additions
and
4,450 deletions.
There are no files selected for viewing
21 changes: 10 additions & 11 deletions
21
src/IdentityServer/Duende/ClassifiedAds.Application/AuditLogEntries/DTOs/AuditLogEntryDTO.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,21 +1,20 @@ | ||
using System; | ||
|
||
namespace ClassifiedAds.Application.AuditLogEntries.DTOs | ||
namespace ClassifiedAds.Application.AuditLogEntries.DTOs; | ||
|
||
public class AuditLogEntryDTO | ||
{ | ||
public class AuditLogEntryDTO | ||
{ | ||
public Guid Id { get; set; } | ||
public Guid Id { get; set; } | ||
|
||
public Guid UserId { get; set; } | ||
public Guid UserId { get; set; } | ||
|
||
public string UserName { get; set; } | ||
public string UserName { get; set; } | ||
|
||
public string Action { get; set; } | ||
public string Action { get; set; } | ||
|
||
public string ObjectId { get; set; } | ||
public string ObjectId { get; set; } | ||
|
||
public string Log { get; set; } | ||
public string Log { get; set; } | ||
|
||
public DateTimeOffset CreatedDateTime { get; set; } | ||
} | ||
public DateTimeOffset CreatedDateTime { get; set; } | ||
} |
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
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
7 changes: 3 additions & 4 deletions
7
src/IdentityServer/Duende/ClassifiedAds.Application/Common/Commands/ICommand.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,6 +1,5 @@ | ||
namespace ClassifiedAds.Application | ||
namespace ClassifiedAds.Application; | ||
|
||
public interface ICommand | ||
{ | ||
public interface ICommand | ||
{ | ||
} | ||
} |
11 changes: 5 additions & 6 deletions
11
src/IdentityServer/Duende/ClassifiedAds.Application/Common/Commands/ICommandHandler.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,11 +1,10 @@ | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
namespace ClassifiedAds.Application | ||
namespace ClassifiedAds.Application; | ||
|
||
public interface ICommandHandler<TCommand> | ||
where TCommand : ICommand | ||
{ | ||
public interface ICommandHandler<TCommand> | ||
where TCommand : ICommand | ||
{ | ||
Task HandleAsync(TCommand command, CancellationToken cancellationToken = default); | ||
} | ||
Task HandleAsync(TCommand command, CancellationToken cancellationToken = default); | ||
} |
Oops, something went wrong.