Skip to content

Commit

Permalink
fix: confirm change email
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 19, 2022
1 parent 75ade02 commit ed5ab50
Show file tree
Hide file tree
Showing 61 changed files with 78 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>

</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>Aguacongas.AspNetCore.Authentication store implementation for TheIdServer API.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsTrimmable>true</IsTrimmable>
<RunAOTCompilation>false</RunAOTCompilation>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageTags>theidserver;aspnetcore;identity;security</PackageTags>
<Description>TheIdServer management application.</Description>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
1 change: 1 addition & 0 deletions src/Aguacongas.TheIdServer/Aguacongas.TheIdServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<DockerComposeProjectPath>..\..\docker-compose.dcproj</DockerComposeProjectPath>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>..\..</DockerfileContext>
<IsTrimmable>true</IsTrimmable>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public async Task<IActionResult> OnGetAsync(string userId, string email, string
return NotFound(_localizer["Unable to load user with ID '{0}'.", userId]);
}

code = Encoding.UTF8.GetString(WebEncoders.Base64UrlDecode(code));
var result = await _userManager.ChangeEmailAsync(user, email, code);
if (!result.Succeeded)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<DebugType>Full</DebugType>
<RootNamespace>Aguacongas.TheIdServer.BlazorApp</RootNamespace>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application api page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application api scope page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application api scope list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application api list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application client page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application client list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application culture page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application culture list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application external provider page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application external provider list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application identity list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application identity page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application import page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application key list page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application relying party list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application api scope page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application role page and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application role list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,19 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Authors>Olivier Lefebvre</Authors>
<Copyright>Copyright (c) 2022 @Olivier Lefebvre</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Aguafrommars/TheIdServer/tree/master/src/Aguacongas.TheIdServer.BlazorApp</PackageProjectUrl>
<RepositoryUrl>https://github.com/Aguafrommars/TheIdServer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>theidserver;identityserver4;duende-identityserveroidc;oauth;identity,authentication;security</PackageTags>
<Description>TheIdServer settings page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application external provider user and components.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<Description>TheIdServer administration application user list page.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<Description>TheIdServer administration application pages.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<RepositoryUrl>https://github.com/aguacongas/TheIdServer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>theidserver;identityserver4;duende-identityserver;administration</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageTags>theidserver;ef;administration</PackageTags>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageTags>theidserver;identityserver4;duende-identityserver;administration</PackageTags>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<RepositoryType>git</RepositoryType>
<PackageTags>theidserver;signing keys rotation</PackageTags>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageTags>theidserver;administration;mongodb</PackageTags>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageTags>theidserver;administration;ravendb</PackageTags>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<PackageProjectUrl>https://github.com/Aguafrommars/TheIdServer/tree/master/src/IdentityServer/Aguacongas.IdentityServer</PackageProjectUrl>
<RepositoryUrl>https://github.com/Aguafrommars/TheIdServer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>theidserver</PackageTags>

<PackageTags>theidserver</PackageTags>
<Description>TheIdServer IndentityServer4 abstraction and extensions.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>package-icon.png</PackageIcon>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<RepositoryUrl>https://github.com/Aguafrommars/TheIdServer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>theidserver;duede.identityserver</PackageTags>

<Description>TheIdServer IndentityServer4 abstraction and extensions.</Description>
<DebugType>Full</DebugType>
<PackageIcon>package-icon.png</PackageIcon>
<RootNamespace>Aguacongas.IdentityServer</RootNamespace>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<PackageTags>theidserver;duende.identityserver;ef;administration</PackageTags>
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageIcon>package-icon.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsTrimmable>true</IsTrimmable>
<CodeAnalysisRuleSet>..\..\..\..\.sonarlint\aguacongas_theidservercsharp.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand Down
Loading

0 comments on commit ed5ab50

Please sign in to comment.