From 621be1259f9c18894232ba42d6321f0418b89ddf Mon Sep 17 00:00:00 2001 From: Jesus Pardo Date: Mon, 8 Apr 2024 16:57:21 -0400 Subject: [PATCH 1/3] [AA-1741] Release Admin App --- EdFi.Suite3.Installer.AdminApp/install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EdFi.Suite3.Installer.AdminApp/install.ps1 b/EdFi.Suite3.Installer.AdminApp/install.ps1 index 95123795..4a4a1bd8 100644 --- a/EdFi.Suite3.Installer.AdminApp/install.ps1 +++ b/EdFi.Suite3.Installer.AdminApp/install.ps1 @@ -76,7 +76,7 @@ $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo OdsApiUrl = "" - PackageVersion = '3.2.1.0' + PackageVersion = '3.3.0.0' PackageSource = $adminAppSource AdminAppFeatures = $adminAppFeatures } From 0e9c0e7ce9e91e372e375f23b5efc0f491e15399 Mon Sep 17 00:00:00 2001 From: Jesus Pardo Date: Mon, 8 Apr 2024 16:59:32 -0400 Subject: [PATCH 2/3] Dummy change --- .../Controllers/ApplicationController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs b/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs index 725f1498..4409d2a6 100644 --- a/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs +++ b/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs @@ -1,7 +1,7 @@ // SPDX-License-Identifier: Apache-2.0 // Licensed to the Ed-Fi Alliance under one or more agreements. // The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. -// See the LICENSE and NOTICES files in the project root for more information. +// See the LICENSE and NOTICES files in the project root for more information. using System; using System.Collections.Generic; @@ -193,8 +193,8 @@ public ActionResult Delete(DeleteApplicationModel model) public async Task Edit(int applicationId) { var application = _getApplicationByIdQuery.Execute(applicationId); - var apiFacade = await _odsApiFacadeFactory.Create(); var psis = apiFacade.GetAllPostSecondaryInstitutions().ToList(); + var apiFacade = await _odsApiFacadeFactory.Create(); var schools = apiFacade.GetAllSchools().ToList(); var leas = apiFacade.GetAllLocalEducationAgencies().ToList(); var profiles = _mapper.Map>(_getProfilesQuery.Execute()); From 9aa0040a8aec29873897313c462f2bd433bb43e3 Mon Sep 17 00:00:00 2001 From: Jesus Pardo Date: Mon, 8 Apr 2024 17:03:18 -0400 Subject: [PATCH 3/3] Dummy change --- .../EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs b/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs index 4409d2a6..0abc1e22 100644 --- a/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs +++ b/Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs @@ -193,9 +193,9 @@ public ActionResult Delete(DeleteApplicationModel model) public async Task Edit(int applicationId) { var application = _getApplicationByIdQuery.Execute(applicationId); - var psis = apiFacade.GetAllPostSecondaryInstitutions().ToList(); var apiFacade = await _odsApiFacadeFactory.Create(); var schools = apiFacade.GetAllSchools().ToList(); + var psis = apiFacade.GetAllPostSecondaryInstitutions().ToList(); var leas = apiFacade.GetAllLocalEducationAgencies().ToList(); var profiles = _mapper.Map>(_getProfilesQuery.Execute());