Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
AoU-Portal
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-Portal
Merge requests
!165
feat(admin events): [AOU-552] new page to list application events
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(admin events): [AOU-552] new page to list application events
fpo/552_new_page_to_list_application_events
into
master
Overview
4
Commits
2
Pipelines
0
Changes
29
All threads resolved!
Hide all comments
Merged
Florent Poittevin
requested to merge
fpo/552_new_page_to_list_application_events
into
master
3 years ago
Overview
4
Commits
2
Pipelines
0
Changes
29
All threads resolved!
Hide all comments
Expand
https://issues.unige.ch/browse/AOU-552
0
0
Merge request reports
Compare
master
version 7
64318563
3 years ago
version 6
7fd3c6e5
3 years ago
version 5
b1d82815
3 years ago
version 4
16cb7d54
3 years ago
version 3
cc632301
3 years ago
version 2
990c81da
3 years ago
version 1
2e506b39
3 years ago
master (base)
and
latest version
latest version
c7fc21bb
2 commits,
3 years ago
version 7
64318563
2 commits,
3 years ago
version 6
7fd3c6e5
1 commit,
3 years ago
version 5
b1d82815
1 commit,
3 years ago
version 4
16cb7d54
1 commit,
3 years ago
version 3
cc632301
1 commit,
3 years ago
version 2
990c81da
1 commit,
3 years ago
version 1
2e506b39
1 commit,
3 years ago
29 files
+
876
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
29
Search (e.g. *.vue) (Ctrl+P)
src/app/enums/index.ts
+
44
−
0
Options
@@ -1004,6 +1004,50 @@ export namespace Enums {
];
}
export
namespace
EventType
{
export
type
EventTypeEnum
=
"
PUBLICATION_TO_VALIDATE
"
|
"
PUBLICATION_CREATED
"
|
"
PUBLICATION_SUBMITTED
"
|
"
PUBLICATION_REJECTED
"
|
"
COMMENT_IN_PUBLICATION
"
|
"
PUBLICATION_FEEDBACK_REQUIRED
"
;
export
const
EventTypeEnum
=
{
PUBLICATION_TO_VALIDATE
:
"
PUBLICATION_TO_VALIDATE
"
as
EventTypeEnum
,
PUBLICATION_CREATED
:
"
PUBLICATION_CREATED
"
as
EventTypeEnum
,
PUBLICATION_SUBMITTED
:
"
PUBLICATION_SUBMITTED
"
as
EventTypeEnum
,
PUBLICATION_REJECTED
:
"
PUBLICATION_REJECTED
"
as
EventTypeEnum
,
COMMENT_IN_PUBLICATION
:
"
COMMENT_IN_PUBLICATION
"
as
EventTypeEnum
,
PUBLICATION_FEEDBACK_REQUIRED
:
"
PUBLICATION_FEEDBACK_REQUIRED
"
as
EventTypeEnum
,
};
export
const
EventTypeEnumTranslate
:
KeyValue
[]
=
[
{
key
:
EventTypeEnum
.
PUBLICATION_TO_VALIDATE
,
value
:
MARK_AS_TRANSLATABLE
(
"
enum.eventType.publicationToValidate
"
),
},
{
key
:
EventTypeEnum
.
PUBLICATION_CREATED
,
value
:
MARK_AS_TRANSLATABLE
(
"
enum.eventType.publicationCreated
"
),
},
{
key
:
EventTypeEnum
.
PUBLICATION_SUBMITTED
,
value
:
MARK_AS_TRANSLATABLE
(
"
enum.eventType.publicationSubmitted
"
),
},
{
key
:
EventTypeEnum
.
PUBLICATION_REJECTED
,
value
:
MARK_AS_TRANSLATABLE
(
"
enum.eventType.publicationRejected
"
),
},
{
key
:
EventTypeEnum
.
COMMENT_IN_PUBLICATION
,
value
:
MARK_AS_TRANSLATABLE
(
"
enum.eventType.commentInPublication
"
),
},
{
key
:
EventTypeEnum
.
PUBLICATION_FEEDBACK_REQUIRED
,
value
:
MARK_AS_TRANSLATABLE
(
"
enum.eventType.publicationFeedbackRequired
"
),
},
];
}
export
namespace
NotificationType
{
export
type
FrequencyEnum
=
Loading