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
GitLab 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
!44
Update: Dependencies and removed obsolete imports
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Update: Dependencies and removed obsolete imports
Hotfix/3115-userReportingEmpty
into
main
Overview
0
Commits
5
Pipelines
6
Changes
5
Merged
Sandra Westerhoff
requested to merge
Hotfix/3115-userReportingEmpty
into
main
2 months ago
Overview
0
Commits
5
Pipelines
6
Changes
5
coscine/issues#3115
Edited
2 months ago
by
Sandra Westerhoff
0
0
Merge request reports
Compare
main
version 4
7983f1c5
2 months ago
version 3
a4f9cd5e
2 months ago
version 2
636f75c0
2 months ago
version 1
885b6057
2 months ago
main (base)
and
latest version
latest version
79efb169
5 commits,
2 months ago
version 4
7983f1c5
4 commits,
2 months ago
version 3
a4f9cd5e
3 commits,
2 months ago
version 2
636f75c0
2 commits,
2 months ago
version 1
885b6057
1 commit,
2 months ago
5 files
+
11
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
src/KpiGenerator/Reportings/Project/ProjectReporting.cs
+
1
−
4
View file @ 79efb169
Edit in single-file editor
Open in Web IDE
Show full file
@@ -22,7 +22,6 @@ public class ProjectReporting
private
readonly
KpiConfiguration
_kpiConfiguration
;
private
readonly
ReportingConfiguration
_reportingConfiguration
;
private
readonly
IAdminApi
_adminApi
;
private
readonly
IProjectQuotaApi
_projectQuotaApi
;
public
ProjectReportingOptions
Options
{
get
;
private
set
;
}
=
null
!;
public
string
ReportingFileName
{
get
;
}
@@ -34,8 +33,7 @@ public class ProjectReporting
[
FromKeyedServices
(
"local"
)]
IStorageService
localStorageService
,
IOptionsMonitor
<
KpiConfiguration
>
kpiConfiguration
,
IOptionsMonitor
<
ReportingConfiguration
>
reportingConfiguration
,
IAdminApi
adminApi
,
IProjectQuotaApi
projectQuotaApi
IAdminApi
adminApi
)
{
_mapper
=
mapper
;
@@ -47,7 +45,6 @@ public class ProjectReporting
ReportingFileName
=
_kpiConfiguration
.
ProjectKpi
.
FileName
;
_adminApi
=
adminApi
;
_projectQuotaApi
=
projectQuotaApi
;
}
public
async
Task
<
bool
>
RunAsync
(
ProjectReportingOptions
reportingOptions
)
Loading