Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Project
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
apis
Project
Merge requests
!109
Fix: Included Consul Key
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Included Consul Key
Hotfix/1093-projectCreation
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Marcel Nellesen
requested to merge
Hotfix/1093-projectCreation
into
master
4 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
coscine/issues#1093 coscine/issues#1095
Edited
4 years ago
by
Benedikt Heinrichs
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8350c906
1 commit,
4 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Project/Controllers/ProjectController.cs
+
1
−
1
Options
@@ -341,7 +341,7 @@ namespace Coscine.Api.Project.Controllers
{
externalIdList
.
Add
(
externalId
.
ExternalIdColumn
);
}
return
new
RdfStoreConnector
().
GetTriples
(
new
Uri
(
"https://ror.org/04xfq0f34"
),
null
,
null
,
1
,
externalIdList
).
Count
()
!=
0
;
return
new
RdfStoreConnector
(
Program
.
Configuration
.
GetStringAndWait
(
"coscine/local/virtuoso/additional/url"
)
).
GetTriples
(
new
Uri
(
"https://ror.org/04xfq0f34"
),
null
,
null
,
1
,
externalIdList
).
Count
()
!=
0
;
}
private
void
LogAnalytics
(
string
operation
,
Loading