feat: expand cockpit integrations and support workflows

Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
This commit is contained in:
Meik
2026-07-13 11:16:53 +02:00
parent bbedbf71c8
commit 0b52999b1d
303 changed files with 11235 additions and 3580 deletions

View File

@@ -7,7 +7,7 @@ using C4IT.FASD.Base;
namespace FasdCockpitCommunicationDemo
{
public class cF4SDTicketSummary
public class cF4SDTicketSummaryDemo
{
public Guid Id { get; set; }
public string Name { get; set; }
@@ -15,7 +15,7 @@ namespace FasdCockpitCommunicationDemo
public enumTicketStatus Status { get; set; }
}
public class cF4SDTicket : cF4SDTicketSummary
public class cF4SDTicketDemo : cF4SDTicketSummaryDemo
{
public enum enumTicketCreationSource
{
@@ -26,7 +26,7 @@ namespace FasdCockpitCommunicationDemo
F4SD = 3
}
public class cTicketJournalItem
public class cTicketJournalItemDemo
{
public double CreationDaysSinceNow { get; set; }
public DateTime CreationDate { get; set; }
@@ -45,16 +45,16 @@ namespace FasdCockpitCommunicationDemo
public DateTime? ClosingDate { get; set; }
public enumTicketCreationSource CreationSource { get; set; }
public string Description { get; set; }
public string DescriptionHtml { get; set; }
public int Priority { get; set; }
public string Category { get; set; }
public string ActivityType { get; set; }
public string Solution { get; set; }
public string SolutionHtml { get; set; }
public Dictionary<string, string> DirectLinks { get; set; }
public string Description { get; set; }
public string DescriptionHtml { get; set; }
public int Priority { get; set; }
public string Category { get; set; }
public string ActivityType { get; set; }
public string Solution { get; set; }
public string SolutionHtml { get; set; }
public Dictionary<string, string> DirectLinks { get; set; }
public List<cTicketJournalItem> JournalItems { get; set; }
public List<cTicketJournalItemDemo> JournalItems { get; set; }
}
}