[PR #510] [CLOSED] Added NavigationItem to and from admin #804

Closed
opened 2026-02-04 18:51:59 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/panel/pull/510
Author: @Poseidon281
Created: 7/28/2024
Status: Closed

Base: issue/353Head: 353


📝 Commits (10+)

📊 Changes

37 files changed (+811 additions, -87 deletions)

View changed files

📝 .github/workflows/ci.yaml (+6 -0)
app/Console/Commands/Maintenance/PruneImagesCommand.php (+60 -0)
📝 app/Console/Kernel.php (+6 -0)
📝 app/Filament/Resources/EggResource/Pages/EditEgg.php (+2 -2)
📝 app/Filament/Resources/NodeResource/Pages/EditNode.php (+36 -9)
app/Filament/Resources/NodeResource/Widgets/NodeCpuChart.php (+81 -0)
📝 app/Filament/Resources/NodeResource/Widgets/NodeMemoryChart.php (+52 -35)
📝 app/Filament/Resources/NodeResource/Widgets/NodeStorageChart.php (+1 -3)
📝 app/Filament/Resources/ServerResource/Pages/EditServer.php (+4 -2)
📝 app/Filament/Resources/ServerResource/RelationManagers/AllocationsRelationManager.php (+85 -3)
📝 app/Filament/Resources/UserResource/Pages/EditProfile.php (+2 -0)
📝 app/Http/Requests/Api/Client/Servers/Schedules/StoreTaskRequest.php (+1 -1)
app/Jobs/NodeStatistics.php (+46 -0)
📝 app/Jobs/Schedule/RunTaskJob.php (+6 -1)
📝 app/Listeners/Auth/AuthenticationListener.php (+0 -7)
📝 app/Models/ActivityLog.php (+4 -0)
📝 app/Models/Egg.php (+1 -1)
📝 app/Models/Task.php (+1 -0)
📝 app/Providers/EventServiceProvider.php (+0 -5)
📝 app/Providers/Filament/AdminPanelProvider.php (+9 -0)

...and 17 more files

📄 Description

I also fixed pint in this PR


🔄 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/pelican-dev/panel/pull/510 **Author:** [@Poseidon281](https://github.com/Poseidon281) **Created:** 7/28/2024 **Status:** ❌ Closed **Base:** `issue/353` ← **Head:** `353` --- ### 📝 Commits (10+) - [`b7437e1`](https://github.com/pelican-dev/panel/commit/b7437e1b7d5f3b186c861be8b53723c9c2818c77) Merge remote-tracking branch 'upstream/main' into 353 - [`7dad2d0`](https://github.com/pelican-dev/panel/commit/7dad2d0e42cc9d89ac4f0f2e6f1c561765d2abc2) Fix #464 - [`1c1c8c0`](https://github.com/pelican-dev/panel/commit/1c1c8c0cc617fd65953771624c9eec6adc90e364) Fix client Activity tab issues; fixes #465 (#466) - [`447e889`](https://github.com/pelican-dev/panel/commit/447e889a4fa9b1665ec0bc32c7cc06e36270ca24) Fix default timestamp for activity logs (#468) - [`bb7c0e0`](https://github.com/pelican-dev/panel/commit/bb7c0e0e66845802af577ecc488c3ccbae72eb50) Add "Delete files" task (#470) - [`1fdff43`](https://github.com/pelican-dev/panel/commit/1fdff43ae7fbbfdefa46ba48b4700be4f791b6c7) Add Node CPU/Memory Graphs (#459) - [`833ae30`](https://github.com/pelican-dev/panel/commit/833ae30e593ef32032103ac47b0b4998a2339386) Add timeouts (#483) - [`8a3d67a`](https://github.com/pelican-dev/panel/commit/8a3d67ada06500025537e142b500b38b64b6ab8c) Fix update egg from url (#492) - [`a04937d`](https://github.com/pelican-dev/panel/commit/a04937d6984bff8a0636c4da70f9ef81f2898d7d) Fix `PORT_FLOOR` check and `CIDR_MAX_BITS` in AssignmentService (#491) - [`10806d6`](https://github.com/pelican-dev/panel/commit/10806d6d6bcad8a875bdfc7fec7ecce2c6bced6c) Fix SQLite foreign keys (#478) ### 📊 Changes **37 files changed** (+811 additions, -87 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yaml` (+6 -0) ➕ `app/Console/Commands/Maintenance/PruneImagesCommand.php` (+60 -0) 📝 `app/Console/Kernel.php` (+6 -0) 📝 `app/Filament/Resources/EggResource/Pages/EditEgg.php` (+2 -2) 📝 `app/Filament/Resources/NodeResource/Pages/EditNode.php` (+36 -9) ➕ `app/Filament/Resources/NodeResource/Widgets/NodeCpuChart.php` (+81 -0) 📝 `app/Filament/Resources/NodeResource/Widgets/NodeMemoryChart.php` (+52 -35) 📝 `app/Filament/Resources/NodeResource/Widgets/NodeStorageChart.php` (+1 -3) 📝 `app/Filament/Resources/ServerResource/Pages/EditServer.php` (+4 -2) 📝 `app/Filament/Resources/ServerResource/RelationManagers/AllocationsRelationManager.php` (+85 -3) 📝 `app/Filament/Resources/UserResource/Pages/EditProfile.php` (+2 -0) 📝 `app/Http/Requests/Api/Client/Servers/Schedules/StoreTaskRequest.php` (+1 -1) ➕ `app/Jobs/NodeStatistics.php` (+46 -0) 📝 `app/Jobs/Schedule/RunTaskJob.php` (+6 -1) 📝 `app/Listeners/Auth/AuthenticationListener.php` (+0 -7) 📝 `app/Models/ActivityLog.php` (+4 -0) 📝 `app/Models/Egg.php` (+1 -1) 📝 `app/Models/Task.php` (+1 -0) 📝 `app/Providers/EventServiceProvider.php` (+0 -5) 📝 `app/Providers/Filament/AdminPanelProvider.php` (+9 -0) _...and 17 more files_ </details> ### 📄 Description I also fixed pint in this PR --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 18:51:59 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/panel#804