-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* NuGet package upgrade (#192) * TTV model update 2023-08-02 (#193) * CSCTTV-2944 revoke orcid access token (#194) * Add Http client for making ORCID token revoke API calls * TTV model update 2023-08-02 (#193) Main change is in table dim_publication in fields international_collaboration, business_collaboration and self_archived_code (bit null). Other changes are due to changes in automatic Entity Framework model generation. * CSCTTV-2944 Revoke user’s ORCID token when user deletes profile. https://info.orcid.org/ufaqs/how-can-i-revoke-tokens/ * Remove Moq NuGet package because of security issue https://snyk.io/blog/moq-package-exfiltrates-user-emails/ (#195)
- Loading branch information
Showing
78 changed files
with
7,599 additions
and
7,624 deletions.
There are no files selected for viewing
3 changes: 0 additions & 3 deletions
3
aspnetcore/src/api.Tests/Services_Tests/OrcidApiServicetest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 17 additions & 15 deletions
32
aspnetcore/src/api/Models/Ttv/BrDatasetDatasetRelationship.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv | ||
{ | ||
public partial class BrDatasetDatasetRelationship | ||
{ | ||
public int DimResearchDatasetId { get; set; } | ||
public int DimResearchDatasetId2 { get; set; } | ||
public string Type { get; set; } | ||
|
||
public virtual DimResearchDataset DimResearchDataset { get; set; } | ||
public virtual DimResearchDataset DimResearchDatasetId2Navigation { get; set; } | ||
} | ||
} | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv; | ||
|
||
public partial class BrDatasetDatasetRelationship | ||
{ | ||
public int DimResearchDatasetId { get; set; } | ||
|
||
public int DimResearchDatasetId2 { get; set; } | ||
|
||
public string Type { get; set; } | ||
|
||
public virtual DimResearchDataset DimResearchDataset { get; set; } | ||
|
||
public virtual DimResearchDataset DimResearchDatasetId2Navigation { get; set; } | ||
} |
34 changes: 19 additions & 15 deletions
34
aspnetcore/src/api/Models/Ttv/BrFundingConsortiumParticipation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv | ||
{ | ||
public partial class BrFundingConsortiumParticipation | ||
{ | ||
public int DimFundingDecisionId { get; set; } | ||
public int DimOrganizationid { get; set; } | ||
public string RoleInConsortium { get; set; } | ||
public decimal? ShareOfFundingInEur { get; set; } | ||
public bool? EndOfParticipation { get; set; } | ||
namespace api.Models.Ttv; | ||
|
||
public partial class BrFundingConsortiumParticipation | ||
{ | ||
public int DimFundingDecisionId { get; set; } | ||
|
||
public virtual DimFundingDecision DimFundingDecision { get; set; } | ||
public virtual DimOrganization DimOrganization { get; set; } | ||
} | ||
} | ||
public int DimOrganizationid { get; set; } | ||
|
||
public string RoleInConsortium { get; set; } | ||
|
||
public decimal? ShareOfFundingInEur { get; set; } | ||
|
||
public bool? EndOfParticipation { get; set; } | ||
|
||
public virtual DimFundingDecision DimFundingDecision { get; set; } | ||
|
||
public virtual DimOrganization DimOrganization { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv | ||
{ | ||
public partial class BrGrantedPermission | ||
{ | ||
public int DimUserProfileId { get; set; } | ||
public int DimExternalServiceId { get; set; } | ||
public int DimPermittedFieldGroup { get; set; } | ||
namespace api.Models.Ttv; | ||
|
||
public partial class BrGrantedPermission | ||
{ | ||
public int DimUserProfileId { get; set; } | ||
|
||
public virtual DimPurpose DimExternalService { get; set; } | ||
public virtual DimReferencedatum DimPermittedFieldGroupNavigation { get; set; } | ||
public virtual DimUserProfile DimUserProfile { get; set; } | ||
} | ||
} | ||
public int DimExternalServiceId { get; set; } | ||
|
||
public int DimPermittedFieldGroup { get; set; } | ||
|
||
public virtual DimPurpose DimExternalService { get; set; } | ||
|
||
public virtual DimReferencedatum DimPermittedFieldGroupNavigation { get; set; } | ||
|
||
public virtual DimUserProfile DimUserProfile { get; set; } | ||
} |
47 changes: 27 additions & 20 deletions
47
aspnetcore/src/api/Models/Ttv/BrParticipatesInFundingGroup.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv | ||
{ | ||
public partial class BrParticipatesInFundingGroup | ||
{ | ||
public int DimFundingDecisionid { get; set; } | ||
public int DimNameId { get; set; } | ||
public int DimOrganizationId { get; set; } | ||
public string RoleInFundingGroup { get; set; } | ||
public decimal? ShareOfFundingInEur { get; set; } | ||
public string SourceId { get; set; } | ||
public bool? EndOfParticipation { get; set; } | ||
|
||
public virtual DimFundingDecision DimFundingDecision { get; set; } | ||
public virtual DimName DimName { get; set; } | ||
public virtual DimOrganization DimOrganization { get; set; } | ||
} | ||
} | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv; | ||
|
||
public partial class BrParticipatesInFundingGroup | ||
{ | ||
public int DimFundingDecisionid { get; set; } | ||
|
||
public int DimNameId { get; set; } | ||
|
||
public int DimOrganizationId { get; set; } | ||
|
||
public string RoleInFundingGroup { get; set; } | ||
|
||
public decimal? ShareOfFundingInEur { get; set; } | ||
|
||
public string SourceId { get; set; } | ||
|
||
public bool? EndOfParticipation { get; set; } | ||
|
||
public virtual DimFundingDecision DimFundingDecision { get; set; } | ||
|
||
public virtual DimName DimName { get; set; } | ||
|
||
public virtual DimOrganization DimOrganization { get; set; } | ||
} |
35 changes: 20 additions & 15 deletions
35
aspnetcore/src/api/Models/Ttv/BrParticipatesInFundingGroupBcPoistetut.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace api.Models.Ttv | ||
{ | ||
public partial class BrParticipatesInFundingGroupBcPoistetut | ||
{ | ||
public int DimFundingDecisionid { get; set; } | ||
public int DimNameId { get; set; } | ||
public int DimOrganizationId { get; set; } | ||
public string RoleInFundingGroup { get; set; } | ||
public decimal? ShareOfFundingInEur { get; set; } | ||
public string SourceId { get; set; } | ||
public bool? EndOfParticipation { get; set; } | ||
} | ||
} | ||
namespace api.Models.Ttv; | ||
|
||
public partial class BrParticipatesInFundingGroupBcPoistetut | ||
{ | ||
public int DimFundingDecisionid { get; set; } | ||
|
||
public int DimNameId { get; set; } | ||
|
||
public int DimOrganizationId { get; set; } | ||
|
||
public string RoleInFundingGroup { get; set; } | ||
|
||
public decimal? ShareOfFundingInEur { get; set; } | ||
|
||
public string SourceId { get; set; } | ||
|
||
public bool? EndOfParticipation { get; set; } | ||
} |
Oops, something went wrong.