Browse Source
Use `IdentityModel` in `IdentityServer` module.
pull/23521/head
maliming
6 months ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
6 changed files with
6 additions and
6 deletions
-
modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AbpClaimsService.cs
-
modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AbpIdentityServerBuilderExtensions.cs
-
modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/AbpResourceOwnerPasswordValidator.cs
-
modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/AbpUserClaimsFactory.cs
-
modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/Devices/DeviceFlowStore.cs
-
modules/identityserver/test/Volo.Abp.IdentityServer.Domain.Tests/Volo/Abp/IdentityServer/Devices/DeviceFlowStore_Tests.cs
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
|
using System.Security.Claims; |
|
|
|
using Duende.IdentityModel; |
|
|
|
using IdentityModel; |
|
|
|
using IdentityServer4.Services; |
|
|
|
using Microsoft.Extensions.Logging; |
|
|
|
using Microsoft.Extensions.Options; |
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ using System.IdentityModel.Tokens.Jwt; |
|
|
|
using System.IO; |
|
|
|
using System.Linq; |
|
|
|
using System.Security.Cryptography; |
|
|
|
using Duende.IdentityModel; |
|
|
|
using IdentityModel; |
|
|
|
using IdentityServer4; |
|
|
|
using IdentityServer4.Configuration; |
|
|
|
using IdentityServer4.Services; |
|
|
|
|
|
|
|
@ -4,7 +4,7 @@ using System.Linq; |
|
|
|
using System.Resources; |
|
|
|
using System.Security.Claims; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Duende.IdentityModel; |
|
|
|
using IdentityModel; |
|
|
|
using IdentityServer4.AspNetIdentity; |
|
|
|
using IdentityServer4.Events; |
|
|
|
using IdentityServer4.Models; |
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ using System.Linq; |
|
|
|
using System.Security.Claims; |
|
|
|
using System.Security.Principal; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Duende.IdentityModel; |
|
|
|
using IdentityModel; |
|
|
|
using Microsoft.AspNetCore.Identity; |
|
|
|
using Microsoft.IdentityModel.JsonWebTokens; |
|
|
|
using Volo.Abp.DependencyInjection; |
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
using System; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Duende.IdentityModel; |
|
|
|
using IdentityModel; |
|
|
|
using IdentityServer4.Models; |
|
|
|
using IdentityServer4.Stores; |
|
|
|
using IdentityServer4.Stores.Serialization; |
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
using System.Linq; |
|
|
|
using System.Security.Claims; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Duende.IdentityModel; |
|
|
|
using IdentityModel; |
|
|
|
using IdentityServer4.Models; |
|
|
|
using IdentityServer4.Stores; |
|
|
|
using Shouldly; |
|
|
|
|