Skip to content
Snippets Groups Projects
Commit 209d0dc8 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Fix

parent 8b7ec5d6
No related branches found
No related tags found
1 merge request!6New: KPI Reporting for Resources
Pipeline #815189 passed
...@@ -78,7 +78,7 @@ public abstract class Reporting<O> where O : class ...@@ -78,7 +78,7 @@ public abstract class Reporting<O> where O : class
{ {
// Retrieve Reporting Database project // Retrieve Reporting Database project
var reportingDatabaseProject = await GitLabClient.Projects.GetAsync(ReportingDatabaseProjectId); var reportingDatabaseProject = await GitLabClient.Projects.GetAsync(ReportingDatabaseProjectId);
var commitBranch = "Issue/2183-kpiGeneratorResource"; var commitBranch = reportingDatabaseProject.DefaultBranch;
var commitMessage = $"{InstanceName} Generated - {DateTime.Now:dd.MM.yyyy HH:mm}"; // CompleteReporting Generated - 31.08.2022 10:25 var commitMessage = $"{InstanceName} Generated - {DateTime.Now:dd.MM.yyyy HH:mm}"; // CompleteReporting Generated - 31.08.2022 10:25
var projectTree = await GitLabClient.Trees.GetAsync(reportingDatabaseProject, o => var projectTree = await GitLabClient.Trees.GetAsync(reportingDatabaseProject, o =>
...@@ -176,16 +176,6 @@ public abstract class Reporting<O> where O : class ...@@ -176,16 +176,6 @@ public abstract class Reporting<O> where O : class
return result; return result;
} }
private string Json(object v)
{
throw new NotImplementedException();
}
private object GetJSONForTripleList(object p)
{
throw new NotImplementedException();
}
public static string GetReportingPathGeneral(string fileName) public static string GetReportingPathGeneral(string fileName)
{ {
return string.Format("General/{0}", fileName); return string.Format("General/{0}", fileName);
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment