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
!919
fix(EventType): update resId to be consistent with other event type ids
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(EventType): update resId to be consistent with other event type ids
rodn-fix-event-resid
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Nicolas.Rod
requested to merge
rodn-fix-event-resid
into
master
7 months ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
22159aea
1 commit,
7 months ago
2 files
+
8
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
AoU-Model/src/main/java/ch/unige/aou/model/notification/EventType.java
+
1
−
1
Options
@@ -64,7 +64,7 @@ public class EventType extends AouResourceNormalized {
public
static
final
String
PUBLICATION_DETECTED_ON_ORCID_ID
=
"PUBLICATION_DETECTED_ON_ORCID"
;
public
static
final
EventType
PUBLICATION_DETECTED_ON_ORCID
=
new
EventType
(
PUBLICATION_DETECTED_ON_ORCID_ID
,
"Publication detected on ORCID"
);
public
static
final
String
PUBLICATION_EXPORTED_TO_ORCID_ID
=
"PUBLICATION_EXPORTED_TO_ORCID
_ID
"
;
public
static
final
String
PUBLICATION_EXPORTED_TO_ORCID_ID
=
"PUBLICATION_EXPORTED_TO_ORCID"
;
public
static
final
EventType
PUBLICATION_EXPORTED_TO_ORCID
=
new
EventType
(
PUBLICATION_EXPORTED_TO_ORCID_ID
,
"Publication exported to ORCID"
);
public
static
final
String
PUBLICATION_UPDATED_IN_BATCH_ID
=
"PUBLICATION_UPDATED_IN_BATCH"
;
Loading