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
GitLab 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
Commits
dcf4f218
Commit
dcf4f218
authored
4 years ago
by
Benedikt Heinrichs
Browse files
Options
Downloads
Plain Diff
Merge branch 'Hotfix/1093-projectCreation' into 'master'
Fix: Included Consul Key See merge request coscine/api/project!109
parents
a450f611
8350c906
Branches
Branches containing commit
Tags
v1.23.1
Tags containing commit
1 merge request
!109
Fix: Included Consul Key
Changes
1
Pipelines
3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Project/Controllers/ProjectController.cs
+1
-1
1 addition, 1 deletion
src/Project/Controllers/ProjectController.cs
with
1 addition
and
1 deletion
src/Project/Controllers/ProjectController.cs
+
1
−
1
View file @
dcf4f218
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment