Skip to content
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

[AA-1741] Release Admin App #460

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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;
Expand Down Expand Up @@ -193,8 +193,8 @@
public async Task<ActionResult> Edit(int applicationId)
{
var application = _getApplicationByIdQuery.Execute(applicationId);
var apiFacade = await _odsApiFacadeFactory.Create();
var psis = apiFacade.GetAllPostSecondaryInstitutions().ToList();

Check failure on line 196 in Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs

View workflow job for this annotation

GitHub Actions / Build and Test

Cannot use local variable 'apiFacade' before it is declared

Check failure on line 196 in Application/EdFi.Ods.AdminApp.Web/Controllers/ApplicationController.cs

View workflow job for this annotation

GitHub Actions / Build and Test

Cannot use local variable 'apiFacade' before it is declared
var apiFacade = await _odsApiFacadeFactory.Create();
var schools = apiFacade.GetAllSchools().ToList();
var leas = apiFacade.GetAllLocalEducationAgencies().ToList();
var profiles = _mapper.Map<List<ProfileModel>>(_getProfilesQuery.Execute());
Expand Down
2 changes: 1 addition & 1 deletion EdFi.Suite3.Installer.AdminApp/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Loading