[PR #130] [MERGED] Improve code primary constructors, ToList Expression #131

Closed
opened 2026-02-26 17:37:27 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Corsinvest/cv4pve-admin/pull/130
Author: @franklupo
Created: 3/25/2025
Status: Merged
Merged: 3/25/2025
Merged by: @franklupo

Base: mainHead: main


📝 Commits (1)

  • f095774 Improve code primary constructors, ToList Expression

📊 Changes

36 files changed (+157 additions, -200 deletions)

View changed files

📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Histories.razor.cs (+1 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Hooks.razor.cs (+3 -4)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Jobs.razor.cs (+6 -7)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Timeline.razor.cs (+2 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Helper.cs (+1 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Job.cs (+6 -8)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Persistence/AutoSnapDbContext.cs (+1 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Repository/AutoSnapJobHistorySpec.cs (+3 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Repository/AutoSnapJobSpec.cs (+4 -3)
📝 src/Corsinvest.ProxmoxVE.Admin.Botgram/BotgramService.cs (+4 -10)
📝 src/Corsinvest.ProxmoxVE.Admin.Botgram/Options.cs (+9 -10)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Components/Costs.razor.cs (+2 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Components/Vms.razor (+2 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Components/Vms.razor.cs (+6 -4)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Helper.cs (+1 -0)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Job.cs (+3 -5)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Models/DataVm.cs (+4 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Persistence/ClusterUsageDbContext.cs (+1 -3)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Services/DiskInfo/CephDiskInfo.cs (+1 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Services/PveClientService.cs (+12 -27)

...and 16 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Corsinvest/cv4pve-admin/pull/130 **Author:** [@franklupo](https://github.com/franklupo) **Created:** 3/25/2025 **Status:** ✅ Merged **Merged:** 3/25/2025 **Merged by:** [@franklupo](https://github.com/franklupo) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (1) - [`f095774`](https://github.com/Corsinvest/cv4pve-admin/commit/f095774a1dc012739cfd72ed1e81368941995dcb) Improve code primary constructors, ToList Expression ### 📊 Changes **36 files changed** (+157 additions, -200 deletions) <details> <summary>View changed files</summary> 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Histories.razor.cs` (+1 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Hooks.razor.cs` (+3 -4) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Jobs.razor.cs` (+6 -7) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Timeline.razor.cs` (+2 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Helper.cs` (+1 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Job.cs` (+6 -8) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Persistence/AutoSnapDbContext.cs` (+1 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Repository/AutoSnapJobHistorySpec.cs` (+3 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Repository/AutoSnapJobSpec.cs` (+4 -3) 📝 `src/Corsinvest.ProxmoxVE.Admin.Botgram/BotgramService.cs` (+4 -10) 📝 `src/Corsinvest.ProxmoxVE.Admin.Botgram/Options.cs` (+9 -10) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Components/Costs.razor.cs` (+2 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Components/Vms.razor` (+2 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Components/Vms.razor.cs` (+6 -4) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Helper.cs` (+1 -0) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Job.cs` (+3 -5) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Models/DataVm.cs` (+4 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterUsage/Persistence/ClusterUsageDbContext.cs` (+1 -3) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Services/DiskInfo/CephDiskInfo.cs` (+1 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Services/PveClientService.cs` (+12 -27) _...and 16 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 17:37:27 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cv4pve-admin#131
No description provided.