Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KPI Reporting Generator
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Coscine
backend
scripts
KPI Reporting Generator
Merge requests
!42
Fix: Stability issues
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Stability issues
Issue/3073-kpi
into
dev
Overview
0
Commits
7
Pipelines
9
Changes
23
Merged
Petar Hristov
requested to merge
Issue/3073-kpi
into
dev
3 months ago
Overview
0
Commits
7
Pipelines
9
Changes
23
Expand
coscine/issues#3073
0
0
Merge request reports
Compare
dev
version 7
fb76d3ff
3 months ago
version 6
9354183d
3 months ago
version 5
93869eb7
3 months ago
version 4
a9d8866b
3 months ago
version 3
7e275390
3 months ago
version 2
3494a11c
3 months ago
version 1
6db864a7
3 months ago
dev (base)
and
latest version
latest version
193fce22
7 commits,
3 months ago
version 7
fb76d3ff
6 commits,
3 months ago
version 6
9354183d
5 commits,
3 months ago
version 5
93869eb7
4 commits,
3 months ago
version 4
a9d8866b
3 commits,
3 months ago
version 3
7e275390
2 commits,
3 months ago
version 2
3494a11c
1 commit,
3 months ago
version 1
6db864a7
2 commits,
3 months ago
23 files
+
1332
−
181
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
Search (e.g. *.vue) (Ctrl+P)
src/KpiGenerator/MappingProfiles/MappingProfiles.cs
+
1
−
1
Options
@@ -49,7 +49,7 @@ public class MappingProfiles : Profile
.
ForMember
(
lp
=>
lp
.
Id
,
opt
=>
opt
.
MapFrom
(
dto
=>
dto
.
Id
))
.
ForMember
(
lp
=>
lp
.
DisplayName
,
opt
=>
opt
.
MapFrom
(
dto
=>
dto
.
DisplayName
));
CreateMap
<
UserOrganizationDto
,
Organization
>()
CreateMap
<
UserOrganizationDto
,
User
Organization
>()
.
ForMember
(
o
=>
o
.
ReadOnly
,
opt
=>
opt
.
MapFrom
(
dto
=>
dto
.
ReadOnly
))
.
ForMember
(
o
=>
o
.
Name
,
opt
=>
opt
.
MapFrom
(
dto
=>
dto
.
DisplayName
))
.
ForMember
(
o
=>
o
.
RorUrl
,
opt
=>
opt
.
MapFrom
(
dto
=>
dto
.
Uri
));
Loading