Skip to content

Commit 5da068d

Browse files
authored
Added multi tenancy support (#128)
* Added multi tenancy support
1 parent 310f3ce commit 5da068d

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ All notable changes to this service will be documented in this file.
88

99
## [1.0.1] – Public Beta
1010
### Notes
11-
- Added Client Side AppInsights SDK.
11+
- Added Client Side AppInsights SDK.
12+
13+
## [1.1.0] – Public Beta
14+
### Notes
15+
- Added Support for Multi-Tenancy. This service is now a Tenant of EAT API.

src/DfE.ExternalApplications.Application/DfE.ExternalApplications.Application.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="GovUK.Dfe.CoreLibs.Notifications" Version="0.1.5" />
11-
<PackageReference Include="GovUK.Dfe.ExternalApplications.Api.Client" Version="0.1.38" />
11+
<PackageReference Include="GovUK.Dfe.ExternalApplications.Api.Client" Version="0.1.40-prerelease-20" />
1212
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="2.3.0" />
1313
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.3.0" />
1414
</ItemGroup>

src/DfE.ExternalApplications.Web/DfE.ExternalApplications.Web.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<UserSecretsId>8051c984-585b-4a5e-b6d7-833e5dd4afe7</UserSecretsId>
8-
<Version>1.0.1</Version>
9-
<InformationalVersion>1.0.1</InformationalVersion>
8+
<Version>1.1.0</Version>
9+
<InformationalVersion>1.1.0</InformationalVersion>
1010
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
1111
</PropertyGroup>
1212

src/DfE.ExternalApplications.Web/appsettings.Development.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"BaseUrl": "https://api.dev.apply-transfer-academy.service.gov.uk",
1212
"ClientId": "602a7acb-37bf-4663-8ac9-12f0c3a4832f",
1313
"Authority": "https://login.microsoftonline.com/9c7d9dd3-840c-4b3f-818e-552865082e16/",
14-
"Scope": "api://65c013ab-cc5d-4fd9-8797-e81c5b16eb3e/.default"
14+
"Scope": "api://65c013ab-cc5d-4fd9-8797-e81c5b16eb3e/.default",
15+
"TenantId": "11111111-1111-1111-1111-111111111111"
1516
},
1617
"TestAuthentication": {
1718
"Enabled": false,

src/DfE.ExternalApplications.Web/appsettings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"ClientId": "602a7acb-37bf-4663-8ac9-12f0c3a4832f",
6868
"Authority": "https://login.microsoftonline.com/9c7d9dd3-840c-4b3f-818e-552865082e16/",
6969
"Scope": "api://65c013ab-cc5d-4fd9-8797-e81c5b16eb3e/.default",
70-
"AutoRegisterUsers": true
70+
"AutoRegisterUsers": true,
71+
"TenantId": "11111111-1111-1111-1111-111111111111"
7172
},
7273
"FormEngine": {
7374
"ComplexFields": [

0 commit comments

Comments
 (0)