Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
AoU-Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AoU
AoU-Backend
Merge requests
!884
feat(OAI-PMH): support OpenAIRE metadata
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(OAI-PMH): support OpenAIRE metadata
HCA-OpenAIRE
into
master
Overview
0
Commits
3
Pipelines
0
Changes
1
Merged
Hugues.Cazeaux
requested to merge
HCA-OpenAIRE
into
master
11 months ago
Overview
0
Commits
3
Pipelines
0
Changes
1
Expand
depending on
solidify/solidify-backend!445 (merged)
0
0
Merge request reports
Viewing commit
7cf9264d
Prev
Next
Show latest version
1 file
+
2
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7cf9264d
feat: support new OAI metadata prefix
· 7cf9264d
Hugues.Cazeaux
authored
11 months ago
AoU-Access/src/main/java/ch/unige/aou/controller/AccessController.java
+
2
−
0
Options
@@ -26,6 +26,7 @@ package ch.unige.aou.controller;
import
java.io.IOException
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnProperty
;
import
org.springframework.context.annotation.DependsOn
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
@@ -42,6 +43,7 @@ import ch.unige.aou.rest.ModuleName;
import
ch.unige.aou.rest.UrlPath
;
@RestController
@DependsOn
(
"solidifyEventPublisher"
)
@ConditionalOnProperty
(
prefix
=
"aou.module.access"
,
name
=
"enable"
)
@RequestMapping
(
UrlPath
.
ACCESS
)
public
class
AccessController
extends
ModuleController
{
Loading