[PR #77] [MERGED] Refactor subscription #109

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

📋 Pull Request Information

Original PR: https://github.com/Corsinvest/cv4pve-admin/pull/77
Author: @franklupo
Created: 8/4/2023
Status: Merged
Merged: 8/4/2023
Merged by: @franklupo

Base: mainHead: main


📝 Commits (3)

📊 Changes

36 files changed (+527 additions, -273 deletions)

View changed files

📝 cmd/doc-utils.ps1 (+5 -5)
📝 cmd/docker-utils.ps1 (+3 -3)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Hooks.razor.cs (+3 -3)
📝 src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Repository/AutoSnapJobSpec.cs (+2 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.ClusterStatus/Components/WidgetInfo/RenderWidgetInfoClusterStatus.razor (+3 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Corsinvest.ProxmoxVE.Admin.Core.csproj (+2 -2)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Helpers/PveAdminHelper.cs (+38 -46)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Services/IPveClientService.cs (+4 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Services/PveClientService.cs (+59 -3)
src/Corsinvest.ProxmoxVE.Admin.Core/Subscription/RenderIndex.razor (+0 -90)
src/Corsinvest.ProxmoxVE.Admin.Core/Subscription/SubscriptionService.cs (+0 -49)
src/Corsinvest.ProxmoxVE.Admin.Core/Support/Buy/Module.cs (+29 -0)
src/Corsinvest.ProxmoxVE.Admin.Core/Support/RequestSupport/Module.cs (+30 -0)
src/Corsinvest.ProxmoxVE.Admin.Core/Support/RequestSupport/RenderSupport.razor (+47 -0)
src/Corsinvest.ProxmoxVE.Admin.Core/Support/RequestSupport/RenderSupport.razor.cs (+29 -0)
src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/Helper.cs (+76 -0)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/Info.cs (+1 -1)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/Module.cs (+7 -11)
src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/RenderIndex.razor (+102 -0)
📝 src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/RenderIndex.razor.cs (+8 -21)

...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/77 **Author:** [@franklupo](https://github.com/franklupo) **Created:** 8/4/2023 **Status:** ✅ Merged **Merged:** 8/4/2023 **Merged by:** [@franklupo](https://github.com/franklupo) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (3) - [`ddd925a`](https://github.com/Corsinvest/cv4pve-admin/commit/ddd925ab8ab047844d90e0b83d254565eca1e21f) Improve code - [`b6b8542`](https://github.com/Corsinvest/cv4pve-admin/commit/b6b85422a69b1c0e88daa5b924d7d75430b4f7e6) Refactor subscription - [`33a2287`](https://github.com/Corsinvest/cv4pve-admin/commit/33a2287f1572ca869707227e2c71aad32cc97c3e) Merge branch 'Corsinvest:main' into main ### 📊 Changes **36 files changed** (+527 additions, -273 deletions) <details> <summary>View changed files</summary> 📝 `cmd/doc-utils.ps1` (+5 -5) 📝 `cmd/docker-utils.ps1` (+3 -3) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Components/Hooks.razor.cs` (+3 -3) 📝 `src/Corsinvest.ProxmoxVE.Admin.AutoSnap/Repository/AutoSnapJobSpec.cs` (+2 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.ClusterStatus/Components/WidgetInfo/RenderWidgetInfoClusterStatus.razor` (+3 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Corsinvest.ProxmoxVE.Admin.Core.csproj` (+2 -2) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Helpers/PveAdminHelper.cs` (+38 -46) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Services/IPveClientService.cs` (+4 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Services/PveClientService.cs` (+59 -3) ➖ `src/Corsinvest.ProxmoxVE.Admin.Core/Subscription/RenderIndex.razor` (+0 -90) ➖ `src/Corsinvest.ProxmoxVE.Admin.Core/Subscription/SubscriptionService.cs` (+0 -49) ➕ `src/Corsinvest.ProxmoxVE.Admin.Core/Support/Buy/Module.cs` (+29 -0) ➕ `src/Corsinvest.ProxmoxVE.Admin.Core/Support/RequestSupport/Module.cs` (+30 -0) ➕ `src/Corsinvest.ProxmoxVE.Admin.Core/Support/RequestSupport/RenderSupport.razor` (+47 -0) ➕ `src/Corsinvest.ProxmoxVE.Admin.Core/Support/RequestSupport/RenderSupport.razor.cs` (+29 -0) ➕ `src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/Helper.cs` (+76 -0) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/Info.cs` (+1 -1) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/Module.cs` (+7 -11) ➕ `src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/RenderIndex.razor` (+102 -0) 📝 `src/Corsinvest.ProxmoxVE.Admin.Core/Support/Subscription/RenderIndex.razor.cs` (+8 -21) _...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:22 +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#109
No description provided.