Skip to content
Snippets Groups Projects
Commit 514b7fc8 authored by Marcel Nellesen's avatar Marcel Nellesen
Browse files

Fix: Updated dependencies

parent d30f4b34
Branches Sprint/2020-20
Tags
1 merge request!66Sprint/2020 20
......@@ -57,7 +57,7 @@ namespace Coscine.Api.STS.Controllers
var orcidAuthItem = externalAuthenticatorModel.GetWhere((externalAuthenticator) => externalAuthenticator.DisplayName == "ORCiD");
var externalIdModel = new ExternalIdModel();
var mapping = externalIdModel.GetAllWhere((map) => map.ExternalId_Column == ORCiD && map.ExternalAuthenticatorId == orcidAuthItem.Id);
var mapping = externalIdModel.GetAllWhere((map) => map.ExternalIdColumn == ORCiD && map.ExternalAuthenticatorId == orcidAuthItem.Id);
var userModel = new UserModel();
User user;
if (mapping.Count() > 0)
......@@ -76,7 +76,7 @@ namespace Coscine.Api.STS.Controllers
userModel.Insert(user);
externalIdModel.Insert(new ExternalId
{
ExternalId_Column = ORCiD,
ExternalIdColumn = ORCiD,
ExternalAuthenticatorId = orcidAuthItem.Id,
UserId = user.Id
});
......
......@@ -42,7 +42,7 @@ namespace Coscine.Api.STS.Controllers
identifier = identifier.Substring(identifier.IndexOf(">") + 1);
identifier = identifier.Substring(0, identifier.IndexOf("<"));
var mapping = externalIdModel.GetAllWhere((map) => map.ExternalId_Column == identifier && map.ExternalAuthenticatorId == shibbolethAuthItem.Id);
var mapping = externalIdModel.GetAllWhere((map) => map.ExternalIdColumn == identifier && map.ExternalAuthenticatorId == shibbolethAuthItem.Id);
User user;
var userModel = new UserModel();
if (mapping.Count() > 0)
......@@ -56,7 +56,7 @@ namespace Coscine.Api.STS.Controllers
userModel.Insert(user);
externalIdModel.Insert(new ExternalId
{
ExternalId_Column = identifier,
ExternalIdColumn = identifier,
ExternalAuthenticatorId = shibbolethAuthItem.Id,
UserId = user.Id
});
......
......@@ -9,10 +9,10 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Coscine.Action" Version="1.14.0" />
<PackageReference Include="Coscine.ActiveDirectory" Version="1.2.0" />
<PackageReference Include="Coscine.ApiCommons" Version="1.9.0" />
<PackageReference Include="Coscine.Database" Version="1.22.2" />
<PackageReference Include="Coscine.Action" Version="1.16.0" />
<PackageReference Include="Coscine.ActiveDirectory" Version="1.3.0" />
<PackageReference Include="Coscine.ApiCommons" Version="1.10.0" />
<PackageReference Include="Coscine.Database" Version="1.26.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Abstractions" Version="2.2.0" />
......
......@@ -6,7 +6,7 @@
<html>
<head>
<title>Login - CoScInE</title>
<title>Login - Coscine</title>
<link rel="icon" href="/_layouts/15/images/Coscine.SharePoint.RWTHMaster/Favicon.png"/>
</head>
<body class="fullwidth">
......
......@@ -5,7 +5,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Logout - CoScInE</title>
<title>Logout - Coscine</title>
<link rel="icon" href="/_layouts/15/images/Coscine.SharePoint.RWTHMaster/Favicon.png"/>
<script type="text/javascript">
localStorage.clear();
......
......@@ -8,7 +8,7 @@
<html>
<head>
<title>Welcome - CoScInE</title>
<title>Welcome - Coscine</title>
<link rel="icon" href="/_layouts/15/images/Coscine.SharePoint.RWTHMaster/Favicon.png" />
</head>
<body>
......
......@@ -9,7 +9,7 @@
<html>
<head>
<title>Login - CoScInE</title>
<title>Login - Coscine</title>
<link rel="icon" href="/_layouts/15/images/Coscine.SharePoint.RWTHMaster/Favicon.png" />
</head>
<body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment