-
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.
* Improve error handling in ORCID record import (#212) * Prevent duplicate key error in fact_field_values when adding TTV data via fact_contribution (#213) * Cscttv 3532 keycloak upgrade from 19 to 20 (#214) * Upgrade Keycloak from 19.0.3 to 20.0.5 * Define target platform in Keycloak Docker images * TTV model update - jufo classes (#215) * Additional TTV model update in tables fact_jufo_class_codes_for_pub_channels and dim_publication_channel (#216) * Fix bug in DimProfileOnlyFundingDecision date handling (#217) * CSCTTV-3561 database model update to dim_publication.jufo_class (#219)
- Loading branch information
Showing
13 changed files
with
385 additions
and
116 deletions.
There are no files selected for viewing
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
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
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,13 +1,14 @@ | ||
using System; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading.Tasks; | ||
using api.Models.Log; | ||
using api.Models.Ttv; | ||
|
||
namespace api.Services | ||
{ | ||
public interface IOrcidImportService | ||
{ | ||
Task<bool> ImportOrcidRecordJsonIntoUserProfile(int userprofileId, string json); | ||
Task<bool> ImportAdditionalData(List<FactFieldValue> factFieldValues, String orcidAccessToken, bool useOrcidPublicApi = false); | ||
Task<bool> ImportOrcidRecordJsonIntoUserProfile(int userprofileId, string json, LogUserIdentification logUserIdentification); | ||
Task<bool> ImportAdditionalData(List<FactFieldValue> factFieldValues, String orcidAccessToken, LogUserIdentification logUserIdentification, bool useOrcidPublicApi = false); | ||
} | ||
} |
Oops, something went wrong.