Commit 2192884
Refactor Authentication Framework and implement OpenID Connect (#723)
* Refactor OpenID Connect PKCE service implementation to consolidate logic and improve session storage management.
* Add support for client secrets and enhance OpenID Connect PKCE flow with session state management.
* Add `UseOpenIdConnect` extension method to simplify OIDC configuration for BlazorServer and BlazorWasm modules
* Add `Elsa.Studio.Authentication.OpenIdConnect` module to provide OpenID Connect-based authentication for Elsa Studio
* Switch to OpenID Connect for authentication, update configuration, and add OIDC script reference.
* Remove default value for `UsePkce` in OpenIdConnectConfiguration to align with existing conventions.
* Remove unused `wwwroot` folder reference from `Elsa.Studio.Login.csproj`.
* Add foundational types for OpenID Connect PKCE flow authentication
* Initial plan
* Phase 1-3 complete: Core OIDC module with Server and WASM implementations
Co-authored-by: sfmskywalker <[email protected]>
* Add shared authentication abstractions for multi-provider support
Co-authored-by: sfmskywalker <[email protected]>
* Add comprehensive authentication architecture documentation
Co-authored-by: sfmskywalker <[email protected]>
* Final: Add implementation summary for PR review
Co-authored-by: sfmskywalker <[email protected]>
* Add authentication infrastructure and modules for Elsa Studio, including ElsaAuth and OpenID Connect integration.
* Update project references to include new Elsa Studio Authentication modules.
* Update `RedirectToLoginUnauthorizedComponentProvider` to support fallback to default Unauthorized component when `IAuthorizationService` is unavailable.
* Mark `Elsa.Studio.Login` APIs as obsolete and migrate authentication to `Elsa.Studio.Authentication.ElsaAuth`. Simplify dependencies and refactor JWT parsing for BlazorServer and BlazorWasm modules.
* Switch to OpenID Connect authentication, remove legacy login module, and update service registration methods.
* Replace `Login` module with OpenID Connect, update authentication pipeline, and revise default `GetClaimsFromUserInfoEndpoint`.
* Replace `BearerTokenHttpMessageHandler` with `AuthenticatingApiHttpMessageHandler` and remove obsolete references
* Organize solution structure by adding new folders: authentication, localization, workflows, deprecated, samples, and dashboard. Remove obsolete project references.
* Refactor authentication: replace legacy services, update OIDC implementation, and restructure PKCE flow
* Add `Elsa.Studio.Authentication.ElsaAuth.UI` module to provide Elsa Identity authentication with a login UI and unauthorized redirect behavior.
* Migrate `AUTHENTICATION_ARCHITECTURE.md` to `doc/` folder, update project references, and refine namespace imports for authentication module.
* Introduce `IAnonymousBackendApiClientProvider` and refactor API client creation to support non-authenticated backend calls.
* Add token refresh mechanism for OpenID Connect and Elsa Identity authentication modules. Introduce token refresh coordinators, configuration providers, and support for silent token refresh. Update related services and integrate advanced options for customization.
* Add persisted token refresh for OpenID Connect in Blazor Server: implement browser-side pings, background services, and configurable strategies.
* Remove persisted token refresh strategy and related services from OpenID Connect configuration.
* Refactor OIDC configuration for Blazor WebAssembly: add Azure AD compatibility patches, improve URI handling, and modularize features.
* Fix Azure AD authentication in Blazor WASM by passing explicit API scopes during token exchange (#722)
* Initial plan
* Fix Azure AD authentication by passing explicit API scopes during token requests
- Updated WasmOidcTokenAccessor to request access tokens with explicit resource scopes
- Filter out standard OIDC scopes (openid, profile, email, offline_access) and pass only API scopes
- Register OidcOptions in DI container so WasmOidcTokenAccessor can access configured scopes
- This ensures Azure AD receives scope parameter during token exchange, fixing AADSTS errors
Co-authored-by: sfmskywalker <[email protected]>
* Add Azure AD configuration documentation for Blazor WASM
- Document Azure AD app registration setup and requirements
- Explain single-resource scope limitation (no mixing Graph + custom API scopes)
- Add troubleshooting guide for common Azure AD errors (AADSTS28000, AADSTS28003)
- Update example to use AddElsaOidcAuthentication instead of AddOidcAuthentication
- Document that standard OIDC scopes are automatically filtered
Co-authored-by: sfmskywalker <[email protected]>
* Address code review feedback
- Register OidcOptions as singleton instance instead of using Configure<T>
- Remove IOptions<T> dependency from WasmOidcTokenAccessor
- Add null check for Scopes array to prevent NullReferenceException
- Simplify DI registration pattern
Co-authored-by: sfmskywalker <[email protected]>
* Update src/modules/Elsa.Studio.Authentication.OpenIdConnect.BlazorWasm/Services/WasmOidcTokenAccessor.cs
Co-authored-by: Copilot <[email protected]>
* Update src/modules/Elsa.Studio.Authentication.OpenIdConnect.BlazorWasm/Services/WasmOidcTokenAccessor.cs
Co-authored-by: Copilot <[email protected]>
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
Co-authored-by: Sipke Schoorstra <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Remove obsolete Azure AD compatibility patches and cleanup related JavaScript and Razor components.
* Refactor OpenID Connect callback path handling: use null-coalescing assignments and remove default path values from `OidcOptions`.
* Add token purposes and scoped token caching for enhanced authentication configuration
* Add scoped access token capabilities and token-purpose configuration
Introduce `IScopedAccessTokenProvider`, `IOidcTokenAccessorWithScopes`, and associated models to enable scope-aware token acquisition based on token purposes. Update handlers to support backend API scopes and implement scoped token caching for multi-audience token scenarios.
* Refactor authentication modules: simplify scoped token handling, update OIDC providers, and enhance incremental consent support.
* Add standalone OpenID Connect authentication module with multi-provider abstractions (#721)
* Initial plan
* Phase 1-3 complete: Core OIDC module with Server and WASM implementations
Co-authored-by: sfmskywalker <[email protected]>
* Add shared authentication abstractions for multi-provider support
Co-authored-by: sfmskywalker <[email protected]>
* Add comprehensive authentication architecture documentation
Co-authored-by: sfmskywalker <[email protected]>
* Final: Add implementation summary for PR review
Co-authored-by: sfmskywalker <[email protected]>
* Add authentication infrastructure and modules for Elsa Studio, including ElsaAuth and OpenID Connect integration.
* Update project references to include new Elsa Studio Authentication modules.
* Update `RedirectToLoginUnauthorizedComponentProvider` to support fallback to default Unauthorized component when `IAuthorizationService` is unavailable.
* Mark `Elsa.Studio.Login` APIs as obsolete and migrate authentication to `Elsa.Studio.Authentication.ElsaAuth`. Simplify dependencies and refactor JWT parsing for BlazorServer and BlazorWasm modules.
* Switch to OpenID Connect authentication, remove legacy login module, and update service registration methods.
* Replace `Login` module with OpenID Connect, update authentication pipeline, and revise default `GetClaimsFromUserInfoEndpoint`.
* Replace `BearerTokenHttpMessageHandler` with `AuthenticatingApiHttpMessageHandler` and remove obsolete references
* Organize solution structure by adding new folders: authentication, localization, workflows, deprecated, samples, and dashboard. Remove obsolete project references.
* Refactor authentication: replace legacy services, update OIDC implementation, and restructure PKCE flow
* Add `Elsa.Studio.Authentication.ElsaAuth.UI` module to provide Elsa Identity authentication with a login UI and unauthorized redirect behavior.
* Migrate `AUTHENTICATION_ARCHITECTURE.md` to `doc/` folder, update project references, and refine namespace imports for authentication module.
* Introduce `IAnonymousBackendApiClientProvider` and refactor API client creation to support non-authenticated backend calls.
* Add token refresh mechanism for OpenID Connect and Elsa Identity authentication modules. Introduce token refresh coordinators, configuration providers, and support for silent token refresh. Update related services and integrate advanced options for customization.
* Add persisted token refresh for OpenID Connect in Blazor Server: implement browser-side pings, background services, and configurable strategies.
* Remove persisted token refresh strategy and related services from OpenID Connect configuration.
* Refactor OIDC configuration for Blazor WebAssembly: add Azure AD compatibility patches, improve URI handling, and modularize features.
* Fix Azure AD authentication in Blazor WASM by passing explicit API scopes during token exchange (#722)
* Initial plan
* Fix Azure AD authentication by passing explicit API scopes during token requests
- Updated WasmOidcTokenAccessor to request access tokens with explicit resource scopes
- Filter out standard OIDC scopes (openid, profile, email, offline_access) and pass only API scopes
- Register OidcOptions in DI container so WasmOidcTokenAccessor can access configured scopes
- This ensures Azure AD receives scope parameter during token exchange, fixing AADSTS errors
Co-authored-by: sfmskywalker <[email protected]>
* Add Azure AD configuration documentation for Blazor WASM
- Document Azure AD app registration setup and requirements
- Explain single-resource scope limitation (no mixing Graph + custom API scopes)
- Add troubleshooting guide for common Azure AD errors (AADSTS28000, AADSTS28003)
- Update example to use AddElsaOidcAuthentication instead of AddOidcAuthentication
- Document that standard OIDC scopes are automatically filtered
Co-authored-by: sfmskywalker <[email protected]>
* Address code review feedback
- Register OidcOptions as singleton instance instead of using Configure<T>
- Remove IOptions<T> dependency from WasmOidcTokenAccessor
- Add null check for Scopes array to prevent NullReferenceException
- Simplify DI registration pattern
Co-authored-by: sfmskywalker <[email protected]>
* Update src/modules/Elsa.Studio.Authentication.OpenIdConnect.BlazorWasm/Services/WasmOidcTokenAccessor.cs
Co-authored-by: Copilot <[email protected]>
* Update src/modules/Elsa.Studio.Authentication.OpenIdConnect.BlazorWasm/Services/WasmOidcTokenAccessor.cs
Co-authored-by: Copilot <[email protected]>
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
Co-authored-by: Sipke Schoorstra <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Remove obsolete Azure AD compatibility patches and cleanup related JavaScript and Razor components.
* Refactor OpenID Connect callback path handling: use null-coalescing assignments and remove default path values from `OidcOptions`.
* Add token purposes and scoped token caching for enhanced authentication configuration
* Add scoped access token capabilities and token-purpose configuration
Introduce `IScopedAccessTokenProvider`, `IOidcTokenAccessorWithScopes`, and associated models to enable scope-aware token acquisition based on token purposes. Update handlers to support backend API scopes and implement scoped token caching for multi-audience token scenarios.
* Refactor authentication modules: simplify scoped token handling, update OIDC providers, and enhance incremental consent support.
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
Co-authored-by: Sipke Schoorstra <[email protected]>
Co-authored-by: Sipke Schoorstra <[email protected]>
Co-authored-by: Copilot <[email protected]>
* Refactor authentication modules: replace `IScopedAccessTokenProvider` with streamlined scope-aware token handling, introduce generic component providers, and enhance JWT accessor abstractions.
* Refactor authentication modules: replace `GenericComponentProvider` with `UnauthorizedComponentProvider`, streamline component references, and mark `LoginFeature` as obsolete.
* Update authentication architecture documentation to reflect actual codebase (#724)
* Initial plan
* Update authentication architecture documentation with accurate module information
Co-authored-by: sfmskywalker <[email protected]>
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
* Simplify token access with explicit methods instead of string-based lookups (#725)
* Initial plan
* Simplify token access architecture - replace string-based token names with explicit methods
Co-authored-by: sfmskywalker <[email protected]>
* Update documentation to reflect simplified token access architecture
Co-authored-by: sfmskywalker <[email protected]>
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
Co-authored-by: Sipke Schoorstra <[email protected]>
* Remove `IScopedAccessTokenProvider`, related properties, and simplify OIDC scope configuration
* Refactor authentication modules: remove obsolete abstractions, streamline configuration setup, and introduce provider-specific HTTP connection options.
* Remove obsolete unauthorized component providers and migrate to generic `UnauthorizedComponentProvider`. Streamline default provider registrations.
* Refactor authentication modules: replace `ITokenRefreshCoordinator` with `ISingleFlightCoordinator`, remove obsolete abstractions, and streamline service registrations across modules.
* Refactor authentication modules: replace `IOidcTokenAccessor` with `ITokenProvider`, simplify service registrations, and enhance Blazor WASM and Server OIDC token handling.
* Remove obsolete persisted OIDC refresh services and replace with `AuthCookieEvents` for token refresh logic. Simplify Blazor Server implementation by leveraging `CookieAuthenticationEvents.OnValidatePrincipal`.
* Remove `IScopedTokenCache` and related implementations. Simplify Blazor Server OIDC token handling by replacing scoped token cache with in-memory dictionary and updating `ServerTokenProvider` logic. Add Polly-based retry policy for token refresh HTTP client.
* Update package versions: upgrade `Elsa.Api.Client` to `3.6.0-rc2`, replace `Http.Resilience` with `Http.Polly`, and realign framework-specific dependencies.
* Apply file-scoped namespace declarations across the solution to align with modern C# practices.
* Update `AUTHENTICATION_ARCHITECTURE.md` to reflect updated Blazor Server and WASM authentication workflows, replace obsolete components, and document new token refresh flow.
* Update default authentication provider to `ElsaAuth` and adjust related documentation and configuration. Refactor `ITokenProvider` interface and improve token handling description.
* Remove `AddAuthenticationInfrastructure` and related references. Clean up obsolete extensions and update service registrations in authentication modules. Adjust documentation to reflect changes.
* Refactor authentication modules: consolidate duplicate JWT parsers into a single implementation, remove legacy services and interfaces, and streamline service registrations.
* Consolidate authentication service registrations: simplify `AddElsaAuth` and `AddElsaAuthUI` extensions, remove redundant `Blazored.LocalStorage` and JWT parser registrations, and streamline usage across Blazor Server and WASM.
* Update `AddOpenIdConnectAuth` naming and replace `ITimeZoneProvider` implementation with `LocalTimeZoneProvider`. Clean up redundant service and variable usages in Blazor Server and WASM hosts.
* Update authentication provider to `ElsaAuth` in configurations and remove redundant comments and unused application URLs.
* Remove `LoginState` component and associated `LoginFeature` logic from `ElsaAuth` authentication modules.
* Add README files for `Elsa.Studio.Authentication` modules: core, Blazor Server, Blazor WebAssembly, and OpenID Connect modules. Document architecture, setup instructions, and troubleshooting details.
* Refactor `IAuthenticationProvider` to `ITokenProvider` across `ElsaAuth` modules and rename `JwtAuthenticationProvider` to `JwtTokenProvider` for improved clarity and consistency.
* Update references from `IAuthenticationProvider` to `ITokenProvider` in README and architecture docs for consistency
* Update localization module to use nullable result in `blazorCulture.get` and switch default authentication to `OpenIdConnect`
* Remove `AZURE_AD_BLAZOR_WASM_AUTH_PLAN.md` as it is no longer relevant to the updated architecture and authentication strategy.
* Rename `ElsaAuth` modules and references to `ElsaIdentity` for alignment with updated authentication strategy. Remove deprecated components and update relevant configurations, service registrations, and documentation accordingly.
* Remove redundant null assignment to `Authorization` header in `ElsaIdentityAuthenticatingApiHttpMessageHandler`.
* Simplify `AccessTokenProvider` lambda expression in `ElsaAuthHttpConnectionOptionsConfigurator`.
* Refactor `ServerTokenProvider` and `TokenRefreshService` constructors to use primary constructor syntax for improved readability and reduced boilerplate. Adjust usages to align with updated structure.
* Remove redundant `<remarks>` section from `AddOidcAuthentication` method documentation.
* Remove `AppBaseUrl` property and related logic from OIDC options and configuration as it is no longer required.
* Add support for legacy Elsa Login authentication module and update project references
* Refactor `WorkflowInstanceObserverFactory` to enable asynchronous configuration of `HttpConnectionOptions` during SignalR connection setup.
* Fix authentication bugs and code quality issues from PR #723 review (#726)
* Initial plan
* Address code review feedback: fix authentication condition, improve documentation, and simplify nested if statements
Co-authored-by: sfmskywalker <[email protected]>
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
Co-authored-by: Sipke Schoorstra <[email protected]>
* Add configurable `NameClaimType` and `RoleClaimType` to OIDC options and update token validation parameters accordingly
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: sfmskywalker <[email protected]>
Co-authored-by: Copilot <[email protected]>1 parent 3eb007f commit 2192884
File tree
123 files changed
+5988
-904
lines changed- doc
- src
- framework
- Elsa.Studio.Core
- Contracts
- Extensions
- Models
- Services
- Visualizers
- Elsa.Studio.Shell
- ComponentProviders
- Extensions
- Elsa.Studio.Translations
- hosts
- Elsa.Studio.Host.HostedWasm
- Elsa.Studio.Host.Server
- Pages
- Elsa.Studio.Host.Wasm
- Properties
- wwwroot
- modules
- Elsa.Studio.Authentication.Abstractions
- ComponentProviders
- Contracts
- Elsa.Studio.Authentication.ElsaIdentity.BlazorServer
- Extensions
- Services
- Elsa.Studio.Authentication.ElsaIdentity.BlazorWasm
- Extensions
- Services
- Elsa.Studio.Authentication.ElsaIdentity.UI
- Components
- Extensions
- Pages/Login
- Elsa.Studio.Authentication.ElsaIdentity
- Contracts
- Extensions
- HttpMessageHandlers
- Models
- Services
- Elsa.Studio.Authentication.OpenIdConnect.BlazorServer
- Components
- Controllers
- Extensions
- Models
- Services
- Elsa.Studio.Authentication.OpenIdConnect.BlazorWasm
- Components
- Extensions
- Pages
- Services
- Elsa.Studio.Authentication.OpenIdConnect
- Contracts
- HttpMessageHandlers
- Models
- Services
- Elsa.Studio.Localization.BlazorWasm
- Extensions
- Services
- Elsa.Studio.Localization
- Elsa.Studio.Login.BlazorServer/Services
- Elsa.Studio.Login.BlazorWasm/Services
- Elsa.Studio.Login
- ComponentProviders
- Contracts
- Extensions
- Services
- Elsa.Studio.Workflows
- ActivityPickers/Treeview
- Components
- WorkflowDefinitionEditor/Components/Models
- WorkflowInstanceList/Models
- Extensions
- Services
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
123 files changed
+5988
-904
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| |||
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
37 | | - | |
38 | | - | |
39 | 38 | | |
40 | 39 | | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
41 | 43 | | |
42 | 44 | | |
43 | 45 | | |
| 46 | + | |
44 | 47 | | |
45 | 48 | | |
46 | 49 | | |
| |||
49 | 52 | | |
50 | 53 | | |
51 | 54 | | |
52 | | - | |
53 | 55 | | |
| 56 | + | |
54 | 57 | | |
55 | 58 | | |
| 59 | + | |
56 | 60 | | |
57 | 61 | | |
58 | 62 | | |
| 63 | + | |
59 | 64 | | |
60 | 65 | | |
61 | 66 | | |
| |||
68 | 73 | | |
69 | 74 | | |
70 | 75 | | |
| 76 | + | |
71 | 77 | | |
72 | 78 | | |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Lines changed: 24 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
1 | 3 | | |
2 | 4 | | |
3 | 5 | | |
| |||
15 | 17 | | |
16 | 18 | | |
17 | 19 | | |
18 | | - | |
| 20 | + | |
19 | 21 | | |
Lines changed: 29 additions & 28 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
2 | 9 | | |
3 | 10 | | |
4 | | - | |
| 11 | + | |
5 | 12 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
| 13 | + | |
12 | 14 | | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
17 | 19 | | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
24 | 26 | | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
29 | 31 | | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
36 | 37 | | |
Lines changed: 15 additions & 16 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
2 | 7 | | |
3 | 8 | | |
4 | | - | |
| 9 | + | |
5 | 10 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
14 | 14 | | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
21 | 20 | | |
Lines changed: 12 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
Lines changed: 44 additions & 45 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
6 | 11 | | |
7 | 12 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
52 | 51 | | |
Lines changed: 6 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
| |||
41 | 40 | | |
42 | 41 | | |
43 | 42 | | |
44 | | - | |
| 43 | + | |
45 | 44 | | |
46 | 45 | | |
47 | 46 | | |
48 | 47 | | |
49 | 48 | | |
50 | 49 | | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
51 | 54 | | |
52 | 55 | | |
53 | 56 | | |
| |||
60 | 63 | | |
61 | 64 | | |
62 | 65 | | |
| 66 | + | |
63 | 67 | | |
64 | 68 | | |
65 | 69 | | |
| |||
0 commit comments