-
Notifications
You must be signed in to change notification settings - Fork 1
Support JWT authentication, including multi-steps authentication #748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
6f40e14
Support JWT authentication, including multi-steps authentication
antoineatstariongroup 1a2a4a4
Bump to net9 and upgrade vulnerable dll
antoineatstariongroup 93aaf7e
git actions to net9
antoineatstariongroup 744fcf6
Bump dependencies and cleanup credentials on Back
antoineatstariongroup 2e3b042
docker file bump to net9
antoineatstariongroup 532032b
improve coverage and requested changes
antoineatstariongroup 89b4457
fix failing tests
antoineatstariongroup 75029ec
code coverage
antoineatstariongroup 3d1330c
Login component bunit
antoineatstariongroup 2e908d9
Fix most of SQ issues
antoineatstariongroup ffbaff3
fix failing test
antoineatstariongroup 29755ec
fix other SQ issues
antoineatstariongroup File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,84 +1,82 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
| <PropertyGroup> | ||
| <TargetFramework>net8.0</TargetFramework> | ||
| <LangVersion>Latest</LangVersion> | ||
| <Version>5.2.0</Version> | ||
| <AssemblyVersion>5.2.0</AssemblyVersion> | ||
| <FileVersion>5.2.0</FileVersion> | ||
| <Title>CDP4 WEB Common</Title> | ||
| <Description>A Common Library for any Blazor based application related to ECSS-E-TM-10-25</Description> | ||
| <Company>Starion Group S.A.</Company> | ||
| <Copyright>Copyright 2023-2024 Starion Group S.A.</Copyright> | ||
| <PackageId>CDP4.WEB.Common</PackageId> | ||
| <AssemblyTitle>COMET.WEB.Common</AssemblyTitle> | ||
| <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
| <Authors>Justine, Sam, Alex, Alexander, Antoine, Jaime, Nabil, Joao</Authors> | ||
| <RepositoryType>Git</RepositoryType> | ||
| <RepositoryUrl>https://github.com/STARIONGROUP/COMET-WEB-Community-Edition.git</RepositoryUrl> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||
| <PackageReadmeFile>README.md</PackageReadmeFile> | ||
| <PackageIcon>cdp4-icon.png</PackageIcon> | ||
| <GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
| <IncludeSymbols>true</IncludeSymbols> | ||
| <SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
| <PackageReleaseNotes> | ||
| <PropertyGroup> | ||
| <TargetFramework>net9.0</TargetFramework> | ||
| <LangVersion>Latest</LangVersion> | ||
| <Version>5.2.0</Version> | ||
| <AssemblyVersion>5.2.0</AssemblyVersion> | ||
| <FileVersion>5.2.0</FileVersion> | ||
| <Title>CDP4 WEB Common</Title> | ||
| <Description>A Common Library for any Blazor based application related to ECSS-E-TM-10-25</Description> | ||
| <Company>Starion Group S.A.</Company> | ||
| <Copyright>Copyright 2023-2024 Starion Group S.A.</Copyright> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please make it 2024-2025 |
||
| <PackageId>CDP4.WEB.Common</PackageId> | ||
| <AssemblyTitle>COMET.WEB.Common</AssemblyTitle> | ||
| <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
| <Authors>Justine, Sam, Alex, Alexander, Antoine, Jaime, Nabil, Joao</Authors> | ||
| <RepositoryType>Git</RepositoryType> | ||
| <RepositoryUrl>https://github.com/STARIONGROUP/COMET-WEB-Community-Edition.git</RepositoryUrl> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||
| <PackageReadmeFile>README.md</PackageReadmeFile> | ||
| <PackageIcon>cdp4-icon.png</PackageIcon> | ||
| <GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
| <IncludeSymbols>true</IncludeSymbols> | ||
| <SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
| <PackageReleaseNotes> | ||
| [Update] to CDP4-SDK 27.4.1 | ||
|
||
| [Add] CacheService to cache reusable data inside one session | ||
| [Update] Open viewmodel such that last selected EngineeringModel, Iteration and Domain is preselected | ||
| </PackageReleaseNotes> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="AsyncEnumerator" Version="4.0.2" /> | ||
| <PackageReference Include="Blazored.FluentValidation" Version="2.2.0" /> | ||
| <PackageReference Include="CDP4ServicesDal-CE" Version="27.4.1" /> | ||
| <PackageReference Include="CDP4Web-CE" Version="27.4.1" /> | ||
| <PackageReference Include="DevExpress.Blazor" Version="23.2.9" /> | ||
| <PackageReference Include="FastMember" Version="1.5.0" /> | ||
| <PackageReference Include="FluentResults" Version="3.16.0" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.10" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.10" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" /> | ||
| <PackageReference Include="ReactiveUI" Version="20.1.63" /> | ||
| <PackageReference Include="System.Drawing.Common" Version="8.0.10" /> | ||
| <PackageReference Include="System.Linq.Dynamic.Core" Version="1.5.0" /> | ||
| <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Label="override transitive vulnerable dependency"> | ||
| <PackageReference Include="System.Formats.Asn1" Version="8.0.1" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup> | ||
| <None Include="..\README.md" Pack="true" PackagePath="\" /> | ||
| <None Include="..\cdp4-icon.png" Pack="true" PackagePath="\" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <InternalsVisibleTo Include="COMET.Web.Common.Tests" /> | ||
| <InternalsVisibleTo Include="DynamicProxyGenAssembly2" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Content Update="Components\BookEditor\InputEditor.razor"> | ||
| <ExcludeFromSingleFile>true</ExcludeFromSingleFile> | ||
| </Content> | ||
| <Content Update="wwwroot\DefaultTextConfiguration.json"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </Content> | ||
| <Content Update="wwwroot\server_configuration.json"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </Content> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <UpToDateCheckInput Remove="Components\SingleThingApplicationTemplate.razor" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <_ContentIncludedByDefault Remove="Components\Applications\ApplicationTemplate.razor" /> | ||
| <_ContentIncludedByDefault Remove="Components\SingleThingApplicationTemplate.razor" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <UpToDateCheckInput Remove="Components\Applications\ApplicationTemplate.razor" /> | ||
| </ItemGroup> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="AsyncEnumerator" Version="4.0.2" /> | ||
| <PackageReference Include="Blazored.FluentValidation" Version="2.2.0" /> | ||
| <PackageReference Include="Blazored.SessionStorage" Version="2.4.0" /> | ||
| <PackageReference Include="CDP4ServicesDal-CE" Version="28.0.0" /> | ||
| <PackageReference Include="CDP4Web-CE" Version="28.0.0" /> | ||
| <PackageReference Include="DevExpress.Blazor" Version="23.2.11" /> | ||
| <PackageReference Include="FastMember" Version="1.5.0" /> | ||
| <PackageReference Include="FluentResults" Version="3.16.0" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="9.0.2" /> | ||
| <PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="9.0.2" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.2" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.2" /> | ||
| <PackageReference Include="ReactiveUI" Version="20.1.63" /> | ||
| <PackageReference Include="System.Drawing.Common" Version="9.0.2" /> | ||
| <PackageReference Include="System.Linq.Dynamic.Core" Version="1.6.0.2" /> | ||
| <PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> | ||
| </ItemGroup> | ||
| <ItemGroup Label="override transitive vulnerable dependency"> | ||
| <PackageReference Include="System.Formats.Asn1" Version="9.0.2" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <None Include="..\README.md" Pack="true" PackagePath="\" /> | ||
| <None Include="..\cdp4-icon.png" Pack="true" PackagePath="\" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <InternalsVisibleTo Include="COMET.Web.Common.Tests" /> | ||
| <InternalsVisibleTo Include="DynamicProxyGenAssembly2" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Content Update="Components\BookEditor\InputEditor.razor"> | ||
| <ExcludeFromSingleFile>true</ExcludeFromSingleFile> | ||
| </Content> | ||
| <Content Update="wwwroot\DefaultTextConfiguration.json"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </Content> | ||
| <Content Update="wwwroot\server_configuration.json"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </Content> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <UpToDateCheckInput Remove="Components\SingleThingApplicationTemplate.razor" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <_ContentIncludedByDefault Remove="Components\Applications\ApplicationTemplate.razor" /> | ||
| <_ContentIncludedByDefault Remove="Components\SingleThingApplicationTemplate.razor" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <UpToDateCheckInput Remove="Components\Applications\ApplicationTemplate.razor" /> | ||
| </ItemGroup> | ||
| </Project> | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this version needs to be bumped i think